Changes between Version 14 and Version 15 of MapGuideRfc59


Ignore:
Timestamp:
Feb 5, 2009, 12:48:57 AM (15 years ago)
Author:
evan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc59

    v14 v15  
    4343 * BaseLayerDefinitionType is an existing common type for all layer types.
    4444 * 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)]]
    4747{{{
    48 
     48<ColorStyle>
     49...
     50<ColorRule>
     51<LegendLabel> 0 to 18</LegendLabel>
     52<Filter>(Slope(1) &gt;= 0) AND (Slope(1) &lt; 18)</Filter>
     53<Color>
     54<ExplicitColor>FFFFFF00</ExplicitColor>
     55</Color>
     56</ColorRule>
     57<ColorRule>
     58<LegendLabel> 18 to 36</LegendLabel>
     59<Filter>(Slope(1) &gt;= 18) AND (Slope(1) &lt; 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>
    4972}}}
    5073