<?xml version="1.0" encoding="UTF-8"?>

<ogc:GetMap xmlns:ogc="http://www.opengis.net/ows"
            xmlns:gml="http://www.opengis.net/gml" version="1.2.0" service="WMS">
    
    <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">
        
        <UserLayer>
            <Name>ROUTE</Name>
            
            <InlineFeature>
                <lineProperty>
                    <gml:Line>
                        <gml:LineString>
                            <gml:coordinates>45,45 46,46</gml:coordinates>
                        </gml:LineString>
                    </gml:Line>
                </lineProperty>
            </InlineFeature>
            
            <UserStyle>
                <FeatureTypeStyle>
                    <Rule>
                        <LineSymbolizer>
                            <Stroke>
                                <CssParameter name="stroke">#ff8a00</CssParameter>
                                <CssParameter name="stroke-width">15</CssParameter>
                                <CssParameter name="opacity">0.6</CssParameter>
                            </Stroke>
                        </LineSymbolizer>
                    </Rule>
                </FeatureTypeStyle>
            </UserStyle>
        </UserLayer>
        
    </StyledLayerDescriptor>
    
    <BoundingBox>
        <gml:coord>
            <gml:X>45</gml:X>
            <gml:Y>45</gml:Y>
        </gml:coord>
        <gml:coord>
            <gml:X>46</gml:X>
            <gml:Y>46</gml:Y>
        </gml:coord>
    </BoundingBox>
    
    <Output>
        <Format>image/png</Format>
        <Transparent>false</Transparent>
        <Size>
            <Width>500</Width>
            <Height>500</Height>
        </Size>
        <BGColor>0xF0F0D0</BGColor>
    </Output>
    
    <Exceptions>application/vnd.ogc.se+xml</Exceptions>
    
</ogc:GetMap>
