該演示創建隨機點在地圖上的標記: http://gmap3.net/examples/pan-to-markers.html在JQuery中爲這些變量使用設置值而不是隨機的值?
請告訴我我可以對演示代碼最小的修改,所以我可以指定點的經度和緯度,而不是讓他們隨機的?
記下確切的代碼我是在鏈路演示稍有不同:
$('#test1').gmap3(
{ action: 'init',
center:{
lat:44.797916,
lng:-93.278046
},
onces: {
bounds_changed: function(){
$(this).gmap3({
action:'getBounds',
callback: function (bounds){
if (!bounds) return;
var southWest = bounds.getSouthWest(),
northEast = bounds.getNorthEast(),
lngSpan = northEast.lng() - southWest.lng(),
latSpan = northEast.lat() - southWest.lat(),
i;
for (i = 0; i < 10; i++) {
add($(this), i, southWest.lat() + latSpan * Math.random(), southWest.lng() + lngSpan * Math.random());
}
}
});
}
}
}
);
});
這裏是代碼即時通訊實際使用。我知道它的黑客,但這只是一個演示。 http://smartpeopletalkfast.co.uk/gmap/demo/overlay.html
你嘗試什麼嗎? – 2012-03-05 14:19:24
我意識到ive粘貼了錯誤的代碼,ive更新了我的問題。謝謝 – Evans 2012-03-05 16:53:01