Mapnik笔划错误
Mapnik stroke error
我在 运行 程序时遇到以下错误:
AttributeError: 'module' 对象没有属性 'stroke_linecap'
sym = mapnik.LineSymbolizer()
sym.stroke = mapnik.Stroke(mapnik.Color(171,158,137), 0.5)
sym.stroke_width = 2
sym.stroke_linecap = mapnik.stroke_linecap.ROUND #Error is here
我发现了一个类似的问题并最终解决了。 stroke_linecap 未正确使用。应该是 line_cap.
sym.line_cap = mapnik.line_cap.ROUND
我在 运行 程序时遇到以下错误: AttributeError: 'module' 对象没有属性 'stroke_linecap'
sym = mapnik.LineSymbolizer()
sym.stroke = mapnik.Stroke(mapnik.Color(171,158,137), 0.5)
sym.stroke_width = 2
sym.stroke_linecap = mapnik.stroke_linecap.ROUND #Error is here
我发现了一个类似的问题并最终解决了。 stroke_linecap 未正确使用。应该是 line_cap.
sym.line_cap = mapnik.line_cap.ROUND