1

我编写了一些 SLD 代码来设置我的地图图层的样式,该图层存储在 GeoServer 上。SLD 的 GeoServer 输入窗口没有显示任何错误消息,但是当我在 OpenLayers 中打开我的地图时,它没有按我的意愿显示地图。在这种情况下,我的意图是将国家多边形着色为类似于安全级别(我的 postgres 数据库中的小数),以便最终危险区域应该像红色和安全区域像绿色。

我的代码:

<!-- Template taken from: http://docs.geoserver.org/stable/en/user/styling/sld/cookbook/polygons.html#attribute-based-polygon -->
<?xml version="1.0" encoding="UTF-8"?>
<sld:UserStyle xmlns="http://www.opengis.net/sld" xmlns:sld="http://www.opengis.net/sld" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml">
  <sld:Title/>
  <FeatureTypeStyle>
     <Rule>
       <Name>HighRisk</Name>
       <Title>WGI &lt; -0.5</Title>
       <ogc:Filter>
         <ogc:PropertyIsLessThan>
           <ogc:PropertyName>wgi</ogc:PropertyName>
           <ogc:Literal>-0.5</ogc:Literal>
         </ogc:PropertyIsLessThan>
       </ogc:Filter>
       <PolygonSymbolizer>
         <Fill>
           <CssParameter name="fill">#fc8d59</CssParameter>
         </Fill>
       </PolygonSymbolizer>
     </Rule>
     <Rule>
       <Name>MediumRisk</Name>
       <Title>WGI &gt; -0.5 und &lt; 0.5</Title>
       <ogc:Filter>
         <ogc:And>
           <ogc:PropertyIsGreaterThanOrEqualTo>
             <ogc:PropertyName>wgi</ogc:PropertyName>
             <ogc:Literal>-0.5</ogc:Literal>
           </ogc:PropertyIsGreaterThanOrEqualTo>
           <ogc:PropertyIsLessThan>
             <ogc:PropertyName>wgi</ogc:PropertyName>
             <ogc:Literal>0.5</ogc:Literal>
           </ogc:PropertyIsLessThan>
         </ogc:And>
       </ogc:Filter>
       <PolygonSymbolizer>
         <Fill>
           <CssParameter name="fill">#ffffbf</CssParameter>
         </Fill>
       </PolygonSymbolizer>
     </Rule>
     <Rule>
       <Name>LowRisk</Name>
       <Title>WGI &gt; 0.5</Title>
       <ogc:Filter>
         <ogc:PropertyIsGreaterThan>
           <ogc:PropertyName>WGI</ogc:PropertyName>
           <ogc:Literal>0.5</ogc:Literal>
         </ogc:PropertyIsGreaterThan>
       </ogc:Filter>
       <PolygonSymbolizer>
         <Fill>
           <CssParameter name="fill">#91cf60</CssParameter>
         </Fill>
       </PolygonSymbolizer>
     </Rule>
      <Rule>
        <Title>Boundary</Title>
        <LineSymbolizer>
          <Stroke>
            <CssParameter name="stroke-width">0.2</CssParameter>
            <CssParameter name="stroke">#e2e2e2</CssParameter>
          </Stroke>
        </LineSymbolizer>
        <TextSymbolizer>
          <Label>
            <ogc:PropertyName>STATE_ABBR</ogc:PropertyName>
          </Label>
          <Font>
            <CssParameter name="font-family">Times New Roman</CssParameter>
            <CssParameter name="font-style">Normal</CssParameter>
            <CssParameter name="font-size">14</CssParameter>
          </Font>
          <LabelPlacement>
            <PointPlacement>
              <AnchorPoint>
                <AnchorPointX>-0.5</AnchorPointX>
                <AnchorPointY>0.5</AnchorPointY>
              </AnchorPoint>
            </PointPlacement>
          </LabelPlacement>
        </TextSymbolizer>
        </Rule>
   </FeatureTypeStyle>
</sld:UserStyle>

不幸的是,到目前为止,我的地图看起来像这样:

在此处输入图像描述

任何帮助和提示表示赞赏!

4

1 回答 1

1

首先,在我的情况下,您的 SLD 没有在我的 GeoServer 上正确验证。

您缺少围绕它们的StyledLayerDescriptor -tag 和围绕 UserStyle 的NamedLayer -tag。此外,sld:Title有一个结束标签,这不是必需的,并且可能会让后面的解释器出现一些错误。

似乎 GeoServer 回退到默认样式,即灰色填充和黑色描边。

我认为您的 SLD 应该是这样的,GeoServer 会正确验证它,甚至可以为此创建一个图例。

<?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>A named Layer</Name>
    <UserStyle>
      <Title>Dangerous and safe regions</Title>
      <FeatureTypeStyle>
       <Rule>
         <Name>HighRisk</Name>
         <Title>WGI &lt; -0.5</Title>
         <ogc:Filter>
           <ogc:PropertyIsLessThan>
             <ogc:PropertyName>wgi</ogc:PropertyName>
             <ogc:Literal>-0.5</ogc:Literal>
           </ogc:PropertyIsLessThan>
         </ogc:Filter>
         <PolygonSymbolizer>
           <Fill>
             <CssParameter name="fill">#fc8d59</CssParameter>
           </Fill>
         </PolygonSymbolizer>
       </Rule>
       <Rule>
         <Name>MediumRisk</Name>
         <Title>WGI &gt; -0.5 und &lt; 0.5</Title>
         <ogc:Filter>
           <ogc:And>
             <ogc:PropertyIsGreaterThanOrEqualTo>
               <ogc:PropertyName>wgi</ogc:PropertyName>
               <ogc:Literal>-0.5</ogc:Literal>
             </ogc:PropertyIsGreaterThanOrEqualTo>
             <ogc:PropertyIsLessThan>
               <ogc:PropertyName>wgi</ogc:PropertyName>
               <ogc:Literal>0.5</ogc:Literal>
             </ogc:PropertyIsLessThan>
           </ogc:And>
         </ogc:Filter>
         <PolygonSymbolizer>
           <Fill>
             <CssParameter name="fill">#ffffbf</CssParameter>
           </Fill>
         </PolygonSymbolizer>
       </Rule>
       <Rule>
         <Name>LowRisk</Name>
         <Title>WGI &gt; 0.5</Title>
         <ogc:Filter>
           <ogc:PropertyIsGreaterThan>
             <ogc:PropertyName>WGI</ogc:PropertyName>
             <ogc:Literal>0.5</ogc:Literal>
           </ogc:PropertyIsGreaterThan>
         </ogc:Filter>
         <PolygonSymbolizer>
           <Fill>
             <CssParameter name="fill">#91cf60</CssParameter>
           </Fill>
         </PolygonSymbolizer>
       </Rule>
        <Rule>
          <Title>Boundary</Title>
          <LineSymbolizer>
            <Stroke>
              <CssParameter name="stroke-width">0.2</CssParameter>
              <CssParameter name="stroke">#e2e2e2</CssParameter>
            </Stroke>
          </LineSymbolizer>
          <TextSymbolizer>
            <Label>
              <ogc:PropertyName>STATE_ABBR</ogc:PropertyName>
            </Label>
            <Font>
              <CssParameter name="font-family">Times New Roman</CssParameter>
              <CssParameter name="font-style">Normal</CssParameter>
              <CssParameter name="font-size">14</CssParameter>
            </Font>
            <LabelPlacement>
              <PointPlacement>
                <AnchorPoint>
                  <AnchorPointX>-0.5</AnchorPointX>
                  <AnchorPointY>0.5</AnchorPointY>
                </AnchorPoint>
              </PointPlacement>
            </LabelPlacement>
          </TextSymbolizer>
          </Rule>
     </FeatureTypeStyle>
    </UserStyle>
  </NamedLayer>
</StyledLayerDescriptor>

还要确保将样式设置为 GeoServer 本身中图层的默认样式,或者在 OpenLayers 正在创建的请求中发送样式参数。

希望我在这里有所帮助,如果我错了或者它似乎也不起作用,请告诉我。

于 2019-10-28T10:09:14.703 回答