How do I add an inner halo style?
Background
There may be times when you need to go beyond the styling of polygons by single or class based values. To achieve this you need to play with the SLD editor.
In the example below you will find information on creating an inner halo styling effect that is ideal of planning applications or planning policy layers.
Examples of planning applications being styled with an inner halo.

Warning!
Playing with SLD editor requires a degree of familiarity with XML and SLD tags. We suggest having a look at
introduction to SLDs in the first instance, and then progressing onto these
examples.
SLD notes:
The SLD file will produce an inner halo in progressively faded (by opacity) red (#ff0000) lines.
There are two scale thresholds set as well (see line 10/11, and line 54/55).
If you want to change the colour from red, then do a find and replace on #ff0000
Key components of the SLD -
- <CssParameter name="stroke">#ff0000</CssParameter> -- sets the colour of the line
- <CssParameter name="stroke-width">5</CssParameter> -- sets the width of the line
- <CssParameter name="stroke-opacity">0.25</CssParameter> -- set the opacity of the line
- <PerpendicularOffset>-8.0</PerpendicularOffset> -- set the offset value
SLD code:
- <?xml version="1.0"?>
- <StyledLayerDescriptor version="1.0.0" xsi:schemaLocation="http://www.opengis.net/sld http://schemas.opengis.net/sld/1.0.0/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>Planning Applications</Name>
- <UserStyle>
- <Title/>
- <Abstract/>
- <FeatureTypeStyle>
- <Rule>
- <MinScaleDenominator>1</MinScaleDenominator>
- <MaxScaleDenominator>1250</MaxScaleDenominator>
- <LineSymbolizer>
- <Stroke>
- <CssParameter name="stroke">#ff0000</CssParameter>
- <CssParameter name="stroke-width">5</CssParameter>
- <CssParameter name="stroke-opacity">0.25</CssParameter>
- <CssParameter name="stroke-linecap">bevel</CssParameter>
- </Stroke>
- <PerpendicularOffset>-8.0</PerpendicularOffset>
- </LineSymbolizer>
- <LineSymbolizer>
- <Stroke>
- <CssParameter name="stroke">#ff0000</CssParameter>
- <CssParameter name="stroke-width">5</CssParameter>
- <CssParameter name="stroke-opacity">0.5</CssParameter>
- <CssParameter name="stroke-linecap">bevel</CssParameter>
- </Stroke>
- <PerpendicularOffset>-5.0</PerpendicularOffset>
- </LineSymbolizer>
- <LineSymbolizer>
- <Stroke>
- <CssParameter name="stroke">#ff0000</CssParameter>
- <CssParameter name="stroke-width">8</CssParameter>
- <CssParameter name="stroke-opacity">0.7</CssParameter>
- <CssParameter name="stroke-linecap">bevel</CssParameter>
- </Stroke>
- <PerpendicularOffset>-2.5</PerpendicularOffset>
- </LineSymbolizer>
- <PolygonSymbolizer>
- <Fill>
- <CssParameter name="fill">#ff0000</CssParameter>
- <CssParameter name="opacity">0.05</CssParameter>
- </Fill>
- </PolygonSymbolizer>
- <PolygonSymbolizer>
- <Stroke>
- <CssParameter name="stroke">#000000</CssParameter>
- <CssParameter name="stroke-width">2</CssParameter>
- <CssParameter name="stroke-linejoin">bevel</CssParameter>
- </Stroke>
- </PolygonSymbolizer>
- </Rule>
- <Rule>
- <MinScaleDenominator>1251</MinScaleDenominator>
- <MaxScaleDenominator>125000</MaxScaleDenominator>
- <LineSymbolizer>
- <Stroke>
- <CssParameter name="stroke">#ff0000</CssParameter>
- <CssParameter name="stroke-width">6</CssParameter>
- <CssParameter name="stroke-opacity">0.15</CssParameter>
- <CssParameter name="stroke-linecap">bevel</CssParameter>
- </Stroke>
- <PerpendicularOffset>-1.5</PerpendicularOffset>
- </LineSymbolizer>
- <LineSymbolizer>
- <Stroke>
- <CssParameter name="stroke">#ff0000</CssParameter>
- <CssParameter name="stroke-width">4</CssParameter>
- <CssParameter name="stroke-opacity">0.25</CssParameter>
- <CssParameter name="stroke-linecap">bevel</CssParameter>
- </Stroke>
- <PerpendicularOffset>-1.0</PerpendicularOffset>
- </LineSymbolizer>
- <PolygonSymbolizer>
- <Fill>
- <CssParameter name="fill">#ff0000</CssParameter>
- <CssParameter name="opacity">0.05</CssParameter>
- </Fill>
- </PolygonSymbolizer>
- <PolygonSymbolizer>
- <Stroke>
- <CssParameter name="stroke">#000000</CssParameter>
- <CssParameter name="stroke-width">.75</CssParameter>
- <CssParameter name="stroke-linejoin">bevel</CssParameter>
- </Stroke>
- </PolygonSymbolizer>
- </Rule>
- </FeatureTypeStyle>
- </UserStyle>
- </NamedLayer>
- </StyledLayerDescriptor>
Related Articles
Adding a WMS/WFS feed to QGIS
Overview A Web Map Service (WMS) is an online data feed that can be connected to desktop or web-based GIS software to view digital maps without having to download the full dataset. A Web Feature Service (WFS) is the same as WMS, except it will ...
Connecting to XMAP Layers externally
Overview XMAP has the functionality to give access to XMAP-hosted Map Layers through three methods: QGIS QLR file (using WFS-T) WMS WFS These options give you the ability to view and edit XMAP-hosted Map Layers in a variety of desktop GIS software. ...
Show/Hide labels
How to show/hide a label. If a Map Layer has a label as part of its style, you can toggle this label on and off via the layers settings cog icon. Please note: toggling the label state only affects your view. It will not change for you colleagues. To ...
Adding Annotations
Overview The Annotate Tool allows you to add annotations to your map. This should be used as a temporary way to mark-up a map. It should not be used to store important information. Your annotate tools is private to your user account, so should your ...
Layer Options
Overview The layer options section of the Data tab allows you to change the scaling, opacity, style or permissions of layers held within your XMAP's database. These options can only be accessed and changed by your XMAP's account administrator. How to ...