在SLD中,如何将字符串添加到描述属性的标签中?


12

使用Geoserver,有什么方法可以向属性:postalnumber中添加预定义的字符串:“ No。” ?

<sld:Label>
<ogc:PropertyName>postalnumber</ogc:PropertyName>
</sld:Label>

Answers:


12

SLD规范包括字符串连接功能。这是如何与标签一起使用的示例:

         <Label>
            <ogc:Function name="Concatenate">
              <ogc:Literal>No. </ogc:Literal>
              <ogc:PropertyName>postalNumber</ogc:PropertyName>
            </ogc:Function>
          </Label>

以上内容已在Geoserver 2.1版上进行了测试。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.