<?xml version="1.0"?>
<StyledLayerDescriptor 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" xmlns:gml="http://www.opengis.net/gml" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/sld http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd">
<NamedLayer>
<Name>USA states population</Name>
<UserStyle>
<Name>population</Name>
<Title>Population in the United States</Title>
<Abstract>A sample filter that filters the United States into three
categories of population, drawn in different colors</Abstract>
<FeatureTypeStyle>
<Rule>
<Title>< 2M</Title>
<PolygonSymbolizer>
<Fill>
<CssParameter name="fill">
<ogc:Function name="Interpolate">
<!-- Property to transform -->
<ogc:PropertyName>t_p</ogc:PropertyName>
<!-- Mapping curve definition pairs (input, output) -->
<ogc:Function name="env">
<ogc:Literal>interval1</ogc:Literal>
<ogc:Literal>685430</ogc:Literal>
</ogc:Function>
<ogc:Function name="env">
<ogc:Literal>color1</ogc:Literal>
<ogc:Literal>#06E852</ogc:Literal>
</ogc:Function>
<ogc:Function name="env">
<ogc:Literal>interval2</ogc:Literal>
<ogc:Literal>1000000</ogc:Literal>
</ogc:Function>
<ogc:Function name="env">
<ogc:Literal>color2</ogc:Literal>
<ogc:Literal>#FF0303</ogc:Literal>
</ogc:Function>
<!-- Interpolation method -->
<ogc:Literal>color</ogc:Literal>
<!-- Interpolation mode - defaults to linear -->
</ogc:Function>
</CssParameter>
</Fill>
</PolygonSymbolizer>
</Rule>
<Rule>
<Title>Boundary</Title>
<LineSymbolizer>
<Stroke>
<CssParameter name="stroke-width">0.2</CssParameter>
</Stroke>
</LineSymbolizer>
<TextSymbolizer>
<Label>
<ogc:PropertyName>label</ogc:PropertyName>
</Label>
<Halo>
<Radius>3</Radius>
<Fill>
<CssParameter name="fill">#FFFFFF</CssParameter>
</Fill>
</Halo>
<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>
SLD моего слоя выглядит примерно так, в котором я дал две переменные minpop и maxpop в виде двух функций ogc. В этом поле я даю значения переменным, и эти значения принимаются в качестве параметров в ogcфункция, но кажется, что функция ogc не работает должным образом В этой области я даю значения переменным, и эти значения принимаются в качестве параметров в функции ogc, но кажется, что функция ogc не работает должным образом
Iпытался не заключать env в литерал, но цвет все еще не работает? Не могли бы вы указать на ошибки в вышеупомянутом SLD?