Skip to content
ThomasG77 edited this page Dec 12, 2011 · 2 revisions

GlyphSymbolizer

New in 0.8 (aka Mapnik2) but about to be removed again in Mapnik 2.1

Renders a TrueType Glyph at the Feature's label location (usually the center of polygons/lines and on the point themselves).

(see source for sample usage)

Sample XML Configuration

    
    <?xml version="1.0" encoding="utf-8"?>
    <Map>
        <Style name="arrows">
        <Rule>
          <GlyphSymbolizer
            face_name="DejaVu Sans Condensed"
            size="10"
            char="'í'"
            allow_overlap="true"
            avoid_edges="false"
            halo_fill="rgba(0%,0%,0%,4%)"
            halo_radius="1"
            value="[value]"
            angle="[azumuth]+90"
          >
            <RasterColorizer>
              <ColorBand value="0" color="#0044cc"/>
              <ColorBand value="10" color="#00cc00"/>
              <ColorBand value="20" color="#ffff00"/>
            </RasterColorizer>
          </GlyphSymbolizer>
        </Rule>
      </Style>
    </Map>

TODO: Describe all parameters

Clone this wiki locally