複数のマップ マーカーを含む Google マップを作成しようとしています。次に、それらのマーカーが終了する場所に基づいて、マップを中央に配置する必要があります。テスト目的で、いくつかの座標をハードコーディングしました。map-canvas div の高さと幅も既に設定しています。ページにマップを表示できません。私はどこでも見て多くの例を見てきましたが、私の例はそれらの例によく似ています。はい、実際のコードに API キーを含めます。
<!DOCTYPE html>
<html>
<head>
<title>Check In Draft</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link type="text/css" href="styles.css" rel=stylesheet />
<h1>Where am I?</h1>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=xxxxx&sensor=false">
</script>
<script type="text/javascript">
function initialize() {
var mapMarker, i;
var locations = [
[ 'Location 1', 42.5822, -87.8456, 3 ],
[ 'Location 2', 42.5812, -87.8446, 2 ],
[ 'Location 3', 42.5832, -87.8466, 1 ]
];
var mapOptions = {
mapTypeId: google.maps.MapTypeId.ROADMAP,
};
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var infowindow = new.google.maps.InfoWindow();
var bounds = new google.maps.LatLngBounds();
for(i = 0; i < locations.length; i++) {
//Edit map marker
mapMarker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map,
animation: google.maps.Animation.DROP
});
bounds.extend(mapMarker.position);
google.maps.event.addListener(marker, 'click', (function(mapMarker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, mapMarker);
}
})(mapMarker, i));
}
//now fit the map to the newly inclusive bounds
map.fitBounds(bounds);
//(optional) restore the zoom level after the map is done scaling
var listener = google.maps.event.addListener(map, "idle", function () {
map.setZoom(10);
google.maps.event.removeListener(listener);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div id="login-links">
Login | Sign Up
</div>
</head>
<body>
<div id="map-canvas"/>
</body>
</html>
ここに私のstyles.cssページもあります。
html
{
height: 100%;
}
body
{
height: 100%;
margin: 0;
padding: 0;
background-color: #b0c4de;
}
h1
{
text-align: center;
}
#map-canvas
{
height: 75%;
width: 75%;
margin-left: auto;
margin-right: auto
}
#login-links
{
text-align: right;
}
助けてくれてありがとう!