iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 20
1
自我挑戰組

Ruby菜鳥村村民遊記系列 第 20

遊記ep.20 Map Type in Google村

  • 分享至 

  • xImage
  •  

今天想來介紹 Google 地圖的種類:

  • roadmap 一般開 google map 見到的樣式,為預設的地圖模式
  • satellite 衛星模式
  • hybrid 混合模式,將一般模式跟衛星模式一起顯示
  • terrain 地形模式,主要會將地圖上的地形顯示出來
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>

最後,我們還可以來做個可以旋轉的地圖把玩一下吧!小心頭暈~


上一篇
遊記ep.19 Geolocation in Google村 -2
下一篇
遊記ep.21 Event in Google村
系列文
Ruby菜鳥村村民遊記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言