我可以在谷歌地圖中繪製多條折線並對它們進行設計,但是我想用不同的顏色爲每條折線着色。使用谷歌地圖api繪製多個多段線不同顏色V3 ASP.net
目前,我有這樣的代碼:
var DrivePath = [
new google.maps.LatLng(37.772323, -122.214897),
new google.maps.LatLng(21.291982, -157.821856),
new google.maps.LatLng(-18.142599, 178.431),
new google.maps.LatLng(-27.46758, 153.027892),
new google.maps.LatLng(12.97918167, 77.6449),
new google.maps.LatLng(12.97918667, 77.64487167),
new google.maps.LatLng(12.979185, 77.64479167),
new google.maps.LatLng(12.97918333, 77.64476)
];
var PathStyle = new google.maps.Polyline({
path: DrivePath,
strokeColor: "#FF0000",
strokeOpacity: 1.0,
strokeWeight: 2
});
PathStyle.setMap(map);
有什麼辦法,我可以添加一個單獨的樣式給我創造每條線?
能否請您分享代碼來繪製多個折線。我已經測試了你的代碼,但是我只能在地圖 – Dibish