0
我正在收集歷史負載併爲每個位置添加一個地圖標記,只是想知道我怎麼也可以在每個標記之間繪製折線?爲每個位置創建gmap3折線
jQuery.each(json, function(i, item) {
var name = item.name;
var userId = item.data.user;
jQuery.each(item.data.data, function(i, nav) {
var ts = nav.timestamp;
var lat = nav.latitude;
var long = nav.longitude;
if (lat != null && long != null) {
addMarker(name, counts = counts + 1, ts, lat, long, userId);
}
});
})
我創建了一個簡單的函數來繪製折線
function addPolyline() {
jQuery("#gMap").gmap3({
action: 'addPolyline',
options:{
strokeColor: "#FF0000",
strokeOpacity: 1.0,
strokeWeight: 2
},
path:[
[37.772323, -122.214897],
[21.291982, -157.821856],
[-18.142599, 178.431],
[-27.46758, 153.027892]
]
});
}
而是奮力fugure如何我可以借鑑在foreach數據折線?
的偉大工程謝謝 – 2012-03-30 14:57:08