Changes between Version 1 and Version 2 of Future/ConvenienceApis
- Timestamp:
- 07/23/13 23:05:16 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Future/ConvenienceApis
v1 v2 141 141 { 142 142 PUBLISHED_API: 143 //Gets the list of geometry type styles for this layer at the map's current scale 143 //Gets the list of geometry type styles for this layer at the map's current scale. Returns NULL if there are no applicable geometry types 144 144 MgIntCollection* GetGeometryTypeStyles(); 145 //Gets the number of theme categories for this layer at the map's current scale for the given geometry type style. A count greater than 1 indicates a themed layer 145 //Gets the number of theme categories for this layer at the map's current scale for the given geometry type style. A count greater than 1 indicates a themed layer. Returns -1 if there are no applicable styles at the current scale 146 146 INT32 GetThemeCategoryCount(INT32 geomType); 147 //Gets the legend image icon for this layer at the at the map's current scale for the given geometry type style and theme category 147 //Gets the legend image icon for this layer at the at the map's current scale for the given geometry type style and theme category. Returns NULL if there is no applicable icon at the given scale/geomType/themeCategory 148 148 MgByteReader* GenerateLegendImage(INT32 width, INT32 height, CREFSTRING format, INT32 geomType, INT32 themeCategory); 149 149 150 //Gets the list of geometry type styles for this layer at the given scale 150 //Gets the list of geometry type styles for this layer at the given scale. Returns NULL if there are not applicable geometry types 151 151 MgIntCollection* GetGeometryTypeStyles(double scale); 152 //Gets the number of theme categories for this layer at the given scale for the given geometry type style. A count greater than 1 indicates a themed layer 152 //Gets the number of theme categories for this layer at the given scale for the given geometry type style. A count greater than 1 indicates a themed layer. Returns -1 if there are no applicable styles at the given scale 153 153 INT32 GetThemeCategoryCount(double scale, INT32 geomType); 154 //Gets the legend image icon for this layer at the at the given scale for the given geometry type style and theme category 154 //Gets the legend image icon for this layer at the at the given scale for the given geometry type style and theme category. Returns NULL if there is no applicable icon at the given scale/geomType/themeCategory 155 155 MgByteReader* GenerateLegendImage(double scale, INT32 width, INT32 height, CREFSTRING format, INT32 geomType, INT32 themeCategory); 156 156 }; 157 157 158 158 }}} 159 160 == Converting between various geometry forms ==