0
下面列出了用於在Google地圖中設置標記的代碼。但只設置了一個標記,而應設置四個標記。無法在Google地圖中標記多個座標
這段代碼有什麼問題?
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#map_canvas { height: 100% }
</style>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false">
</script>
<script type="text/javascript">
var locations = [
[4, -33.890542, 151.274856,'Town1', 'Page1.aspx'],
[3, -33.923036, 151.259052,'Town2', 'Page1.aspx'],
[2, -34.028249, 151.157507,'Town3', 'Page1.aspx'],
[1, -33.80010128657071, 151.28747820854187,'Town4', 'Page1.aspx']
];
</script>
<script type="text/javascript">
function initialize() {
var myOptions = {
zoom: 10,
center: new google.maps.LatLng(-33.9, 151.2),
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
setMarkers(map, locations);
}
/**
* Data for the markers consisting of a name, a LatLng and a zIndex for
* the order in which these markers should display on top of each
* other.
*/
function setMarkers(map, locations) {
debugger;
for (var i = 0; i < locations.length; i++) {
var location = locations[i];
if (location != undefined) {
var myLatLng = new google.maps.LatLng(location[1], location[2]);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
title: location[3],
zIndex: location[0]
});
}
var latlngbounds = new google.maps.LatLngBounds();
for (var i = 0; i < locations.length; i++) {
var location = locations[i];
if (location != undefined) {
var point = new google.maps.LatLng(location[1], location[2]);
latlngbounds.extend(point);
}
}
map.setCenter(latlngbounds.getCenter());
}
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>
看看這個,它的工作原理奇妙的我: http://stackoverflow.com/questions/3059044/google-maps-js-api-v3-simple-multiple-marker-example – Alsaket 2011-07-30 16:59:14