Использовать MarkersSymbolizer вместо PointSymbolizer, для отрисовки иконок POI.

см.
https://github.com/mapnik/mapnik/issues/2217
https://github.com/mapnik/mapnik/issues/1316
https://github.com/mapnik/mapnik/wiki/MarkersSymbolizer
This commit is contained in:
MaksVasilev 2014-04-22 13:02:25 +04:00
parent 340da4704c
commit 8e1da17e83

View file

@ -88,7 +88,7 @@ def xml_pointsymbolizer(path="", width="", height="", opacity=1, overlap="false"
if height:
height = ' height="%s" ' % height
return """
<PointSymbolizer file="%s" %s %s opacity="%s" allow-overlap="%s" />"""\
<MarkersSymbolizer file="%s" %s %s opacity="%s" allow-overlap="%s" />"""\
% (os.path.join(icons_path, path), width, height, opacity, overlap)