OpenLayers Nightly Build Revision 10086<br>GeoServer 2.0.1<br><br>I&#39;m attempting to label a vector layer using a Style Layer Descriptor (see below) which works fine in GeoServer but the labels do not display in OpenLayers. I can do the same thing using the OpenLayers.Style object but I&#39;d really like use the same SLD as used by GeoServer.<br>
<br>I&#39;ve found a discussion thread from 2008 which says that the SLD TextSymbolizer is only supported for reading / writing but can&#39;t be used for display purposes. As such can anybody advise if the SLD TextSymbolizer can be used for displaying labels with the current trunk; if it will be included in 2.9; or if it supported is there an error in my SLD?<br>
<br>Many thanks in advance<br><br>Andrew<br><br><br>--- Start SLD (xml ns tags removed) ---<br>&lt;sld:StyledLayerDescriptor version=&quot;1.0.0&quot;&gt;<br>  &lt;sld:NamedLayer&gt;<br>    &lt;sld:Name&gt;ParcelView&lt;/sld:Name&gt;<br>
    &lt;sld:UserStyle&gt;<br>      &lt;sld:IsDefault&gt;1&lt;/sld:IsDefault&gt;<br>      &lt;sld:FeatureTypeStyle&gt;<br>        &lt;sld:Rule&gt;<br>            &lt;sld:MaxScaleDenominator&gt;300000&lt;/sld:MaxScaleDenominator&gt;<br>
            &lt;sld:PolygonSymbolizer&gt;<br>                &lt;!-- the fill displays correctly --&gt;<br>                &lt;sld:Fill&gt;<br>                    &lt;sld:CssParameter name=&quot;fill&quot;&gt;<br>                    &lt;ogc:Literal&gt;#FFFAE6&lt;/ogc:Literal&gt;<br>
                    &lt;/sld:CssParameter&gt;<br>                    &lt;sld:CssParameter name=&quot;fill-opacity&quot;&gt;<br>                    &lt;ogc:Literal&gt;0.75&lt;/ogc:Literal&gt;<br>                    &lt;/sld:CssParameter&gt;<br>
                &lt;/sld:Fill&gt;<br>                &lt;!-- the label does not show --&gt;<br>                &lt;sld:Stroke&gt;<br>                    &lt;sld:CssParameter name=&quot;stroke&quot;&gt;<br>                    &lt;ogc:Literal&gt;#B2B2B2&lt;/ogc:Literal&gt;<br>
                    &lt;/sld:CssParameter&gt;<br>                    &lt;sld:CssParameter name=&quot;stroke-width&quot;&gt;<br>                    &lt;ogc:Literal&gt;0.4&lt;/ogc:Literal&gt;<br>                    &lt;/sld:CssParameter&gt;<br>
                &lt;/sld:Stroke&gt;<br>            &lt;/sld:PolygonSymbolizer&gt;<br>            &lt;sld:TextSymbolizer&gt;<br>              &lt;sld:Label&gt;<br>                &lt;ogc:PropertyName&gt;FULL_PARCEL_ID&lt;/ogc:PropertyName&gt;<br>
              &lt;/sld:Label&gt;<br>              &lt;sld:Font&gt;<br>                &lt;sld:CssParameter name=&quot;font-family&quot;&gt;<br>                  &lt;ogc:Literal&gt;Times New Roman&lt;/ogc:Literal&gt;<br>                &lt;/sld:CssParameter&gt;<br>
              &lt;/sld:Font&gt;<br>              &lt;sld:Fill&gt;<br>                &lt;sld:CssParameter name=&quot;fill&quot;&gt;<br>                    &lt;ogc:Literal&gt;#000000&lt;/ogc:Literal&gt;<br>                &lt;/sld:CssParameter&gt;<br>
              &lt;/sld:Fill&gt;<br>            &lt;/sld:TextSymbolizer&gt;<br>        &lt;/sld:Rule&gt;<br>      &lt;/sld:FeatureTypeStyle&gt;<br>    &lt;/sld:UserStyle&gt;<br>  &lt;/sld:NamedLayer&gt;<br>&lt;/sld:StyledLayerDescriptor&gt;<br>
--- End SLD ---<br>