1
我已經繪製折線,如下所示:折線開始和在谷歌的位置結束映射V3
var data = JSON.parse(data);
var LineCordinates = new Array();
for (i=0; i<data.length; i++){
LineCordinates[i] = new google.maps.LatLng(data[i].fields.latitude, data[i].fields.longitude);
}
linePath = new google.maps.Polyline({
path: LineCordinates,
geodesic: true,
strokeColor: '#FF0000',
strokeOpacity: 1.0,
strokeWeight: 2
});
linePath.setMap(map);
}
我要放置在polygon line
和多邊形線end
的開始。怎麼做?
謝謝,這是wha t我想要,但是'endMarker'''位置似乎有問題,它說:'TypeError:linePath.getAt不是函數 \t position:linePath.getAt(linePath.getPath()。getLength() -1),' – pynovice
Oops,typo,getAt()是一個MVCArray的方法,需要在多段線的路徑上調用,而不是在回答中修復的多段線本身。 – geocodezip