5
如何設置Google地圖多段線的顏色?在Google Maps v3中設置Polyline的顏色?
var myRoutePath;
myRoutePath = new google.maps.Polyline({
path: routeCoordinates,
strokeColor: "#CC33FF",
strokeWeight: 3
});
myRoutePath.setMap(map);
// Reset colour
myRoutePath.setOptions({strokeColor: 'blue'});
上述內容在Firebug中不顯示爲錯誤,但它也不會改變顏色。
感謝您的幫助。