Google Maps API を使用して地図を表示する Web アプリを作成しています。ページをリロードすると、座標が指示するマップが初期化されず、「あいまい」になります。左側のツールバーを使用してズームアウトし、ズームインすると、すべて問題ありません。これが私のコードです:
<!DOCTYPE html>
<html>
<head>
<title>Google Maps JavaScript</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta charset="UTF-8">
<style type="text/css">
html, body, #map_canvas {
margin: 0;
padding: 0;
height: 50%;
}
</style>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var map;
function initialize() {
var myOptions = {
zoom: 14,
center: new google.maps.LatLng(2.3584170693, -71.065063476),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map_canvas'),
myOptions);
var bikeLayer = new google.maps.BicyclingLayer();
bikeLayer.setMap(map);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(42.346872819794896, -71.06643676757812),
map: map,
title: 'REPORT'
});
var marker = new google.maps.Marker({
position: new google.maps.LatLng(42.363363955820496, -71.08978271484375),
map: map,
title: 'REPORT'
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map_canvas" style="width: 90%; height: 300%"></div>
</body>
</html>