Changes between Version 14 and Version 15 of MapGuideRfc59
- Timestamp:
- 02/05/09 00:48:57 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc59
v14 v15 43 43 * BaseLayerDefinitionType is an existing common type for all layer types. 44 44 * FeatureName and Geometry are the same as in Vector/Grid layer. 45 * Filter element is an FDO expression for the ColorRule. Any features that pass this filter are styled using this rule's stylization. We can stylize TIN surface by elevation, slope and aspect. Here is an example:46 45 * Filter element is an FDO expression for the ColorRule. Any features that pass this filter are styled using this rule's stylization. We can stylize TIN surface by elevation, slope and aspect. For example, this surface is stylized with XML snippet as below: 46 [[Image(stylize_by_slope.bmp)]] 47 47 {{{ 48 48 <ColorStyle> 49 ... 50 <ColorRule> 51 <LegendLabel> 0 to 18</LegendLabel> 52 <Filter>(Slope(1) >= 0) AND (Slope(1) < 18)</Filter> 53 <Color> 54 <ExplicitColor>FFFFFF00</ExplicitColor> 55 </Color> 56 </ColorRule> 57 <ColorRule> 58 <LegendLabel> 18 to 36</LegendLabel> 59 <Filter>(Slope(1) >= 18) AND (Slope(1) < 36)</Filter> 60 <Color> 61 <ExplicitColor>FFFFBF00</ExplicitColor> 62 </Color> 63 </ColorRule> 64 ... 65 <ColorRule> 66 <LegendLabel>{DEFAULT}</LegendLabel> 67 <Color> 68 <ExplicitColor>FF006423</ExplicitColor> 69 </Color> 70 </ColorRule> 71 </ColorStyle> 49 72 }}} 50 73