今天想來介紹 Google 地圖的種類:
var myLatlng = new google.maps.LatLng(-34.397, 150.644);
var mapOptions = {
zoom: 8,
center: myLatlng,
mapTypeId: 'satellite'
};
var map = new google.maps.Map(document.getElementById('map'),
mapOptions);
我們可以藉由更改mapTypeId
來改變地圖顯示模式,
除了在 mapOptions 內設定地圖的種類,
也可以使用map.setMapTypeId('terrain');
的方法來改變地圖的種類。
在衛星模式以及混合模式中,Google Map 提供了一種新的觀看視角——45° Imagery
可以用45度角去切入地圖,來看到更詳盡的地圖模組以及高解析度(但條件是zoom要大到一定程度才會發生)。
當然我們也可以在載入地圖中做個設定:
map.setTilt()
我們使用這個方法,若參數代0則會使用一般俯視地圖的視角,
map.setTilt(45)就會使用45度角來切入地圖~
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Rotating 45° Imagery</title>
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#floating-panel {
position: absolute;
top: 10px;
left: 25%;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
text-align: center;
font-family: 'Roboto','sans-serif';
line-height: 30px;
padding-left: 10px;
}
</style>
</head>
<body>
<div id="floating-panel"><input type="button" value="Auto Rotate" onclick="autoRotate();"></div>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 45.518, lng: -122.672},
zoom: 18,
mapTypeId: 'satellite',
heading: 90,
tilt: 45
});
}
function rotate90() {
var heading = map.getHeading() || 0;
map.setHeading(heading + 90);
}
function autoRotate() {
// Determine if we're showing aerial imagery.
if (map.getTilt() !== 0) {
window.setInterval(rotate90, 3000);
}
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap">
</script>
</body>
</html>
最後,我們還可以來做個可以旋轉的地圖把玩一下吧!小心頭暈~