我有所有的位置和和弦。这一定是我在代码中做错了什么。有人看出有什么不对吗?基本上我正在尝试用多个图钉制作一张地图,但我不太确定是什么导致这个图不起作用。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Google Maps Multiple Markers</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 500px; height: 400px;"></div>
<script type="text/javascript">
var locations = [
['Kapten Nemo', 57.707957,11.934296, 4],
['Slimfood', 57.712283,11.944914, 5],
['L's Kitchen', 57.707126,11.939796, 3],
['Bombay Bistro', 57.708316,11.937755, 2],
['Mimolett', 57.712283,11.944914, 1]
];
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 10,
center: new google.maps.LatLng(57.72, 11.94),
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var infowindow = new google.maps.InfoWindow();
var marker, i;
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}
</script>
</body>
</html>