1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <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>Point as graphic</Name>
- <UserStyle>
- <Title>GeoServer SLD Cook Book: Point as graphic</Title>
- <FeatureTypeStyle>
- <Rule>
- <PointSymbolizer>
- <Graphic>
- <ExternalGraphic>
- <OnlineResource
- xlink:type="simple"
- xlink:href="smileyface.png" />
- <Format>image/png</Format>
- </ExternalGraphic>
- <Size>32</Size>
- </Graphic>
- </PointSymbolizer>
- </Rule>
- </FeatureTypeStyle>
- </UserStyle>
- </NamedLayer>
- </StyledLayerDescriptor>
|