我正在尝试使用自定义宽度在我的GoogleMap对象上绘制折线,您可以根据文档在PolylineOptions中设置。这一切都很好,花花公子,除了它实际上没有设定重量。无论我将其设置为什么,似乎都保持默认的10px。有什么指针吗?
PolylineOptions opts = new PolylineOptions();
opts.add(point);
opts.add(otherpoint);
opts.color(whatevercolor);
opts.width(justAboutAnyNumberYouCouldImagineAndItDoesntEvenMatter);
Polyline pl = map.addPolyline(opts);
要清楚;使用指定的参数绘制线条,除了重量...帮助?
答案 0 :(得分:0)
Fab,我在你的例子中没有看到strokeWeight。此示例有效并将strokeWeight设置为荒谬的宽度。
var scale = new google.maps.Polyline()
scale.setPath( [scaleStart, horizontalLineStart, horizontalLineEnd, scaleEnd])
scale.setOptions({strokeWeight:50, visible:true})
scale.setMap(map)