1
我想在地圖上放置多個標記,但我得到的地圖沒有設置標記。無法使用Google地圖在Google地圖上設置多個標記javascript api v3
<script type="text/javascript">
var map;
var i;
window.onload=function()
{
var mapOptions = {
zoom: 13,
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: new google.maps.LatLng(59.32522, 18.07002)
};
map = new google.maps.Map(document.getElementById("map"),mapOptions);
var bounds = new google.maps.LatLngBounds();
var places =[];
places.push(google.maps.LatLng(40.756,-73.986));
places.push(google.maps.LatLng(59.32522, 18.07002));
places.push(google.maps.LatLng(37.775,-122.419));
places.push(google.maps.LatLng(47.620,-122.347));
places.push(google.maps.LatLng(-22.933,-43.184));
for(i=0; i<places.length;i++)
{
var marker= new google.maps.Marker({position:places[i],map: map,title:'place Number'+i});
bounds.extend(places[i]);
}
map.fitBounds(bounds);
}
</script>
感謝幫助,但它仍然沒有工作。 – geetika 2011-06-03 09:45:15
我已經明確添加了您的修改後的代碼將看起來像答案。嘗試剪切並粘貼它。 – Trott 2011-06-03 14:02:48
感謝@Trott現在的工作 – geetika 2011-06-03 16:39:44