-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GeoStyler not applying SLD colour #204
Comments
Thanks for looking at this. Currently |
Same behaviour in the latest version I'm unsure if Setting a <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<StyledLayerDescriptor version="1.0.0" xsi:schemaLocation="http://www.opengis.net/sld StyledLayerDescriptor.xsd" xmlns="http://www.opengis.net/sld" xmlns:ogc="http://www.opengis.net/ogc" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<NamedLayer>
<Name>ruins</Name>
<UserStyle>
<Name>ruins</Name>
<Title>ruins</Title>
<FeatureTypeStyle>
<Rule>
<Name>POI: Ruins</Name>
<PointSymbolizer>
<Graphic>
<Mark>
<WellKnownName>cross</WellKnownName>
<Stroke>
<CssParameter name="stroke">#ffd966</CssParameter>
<CssParameter name="stroke-width">3</CssParameter>
</Stroke>
</Mark>
<Size>8</Size>
</Graphic>
</PointSymbolizer>
</Rule>
</FeatureTypeStyle>
</UserStyle>
</NamedLayer>
</StyledLayerDescriptor> |
Also unsure what the standard says. We might have to check if this is standard compliant. If yes we could adapt the geostyler parser. |
One of the new demo layers uses a cross symbol based on the SLD generated by https://w08-mapserver.compass.ie/mapserver/?map=/MapServer/apps/mapview-demo/example.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetStyles&LAYERS=ruins
The legend displays the correct colour (yellow), but the features themselves are displayed in black.
See screencast at https://drive.google.com/file/d/1azO1N_ur1wQDRmDRsfEok_TFqw91YgWD/view
Updating
#ffd966
toyellow
does not change the result.The text was updated successfully, but these errors were encountered: