运行程序时出现以下错误: AttributeError:“模块”对象没有属性“ 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
答案 0 :(得分:0)
我发现了一个类似的问题,并最终解决了。 stroke_linecap使用不正确。应该是line_cap。
sym.line_cap = mapnik.line_cap.ROUND