html googlemapで简易的なルート検索http://bl.ocks.org/ANTON072/f39adaea933d1b282eee

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html googlemapで简易的なルート検索http://bl.ocks.org/ANTON072/f39adaea933d1b282eee相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  #map_canvas {
    width: 100%;
    height: 100%;
  }
  </style>
  <script src="//maps.googleapis.com/maps/api/js?key=AIzaSyDg13xe7Kt-Kwb0K-3ThoyyXkO38hvWt9I&?sensor=TRUE"></script>
</head>
<body>

  <div id="map_canvas"></div>

  <script>
  var mapCanvas;
  function initialize(){
    var mapDiv = document.getElementById('map_canvas');
    var initPos = new google.maps.LatLng(35.658613, 139.745525);
    var mapOptions = {
      center: initPos,
      zoom: 16,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    mapCanvas = new google.maps.Map(mapDiv, mapOptions);

    // ルート検索の条件を指定
    var request = {
      origin: '東京駅', // 出発点
      destination: '東京タワー', // 目的地
      travelMode: google.maps.DirectionsTravelMode.DRIVING
    };

    // Directionsサービスを使ってGoogleのサーバーにルート検索を依頼
    var directionsService = new google.maps.DirectionsService();

    // 結果はcallback_direction関数でうけとる
    directionsService.route(request, callback_direction);

    function callback_direction(result, status){
      console.log(result, status);
      if (status === google.maps.DirectionsStatus.OK) {
        // 結果を地図に表示
        var directionsDisplay = new google.maps.DirectionsRenderer({
          map: mapCanvas
        });
        directionsDisplay.setDirections(result);
      }
    }

  }


  google.maps.event.addDomListener(window, 'load', initialize);
  </script>

</body>
</html>

以上是关于html googlemapで简易的なルート検索http://bl.ocks.org/ANTON072/f39adaea933d1b282eee的主要内容,如果未能解决你的问题,请参考以下文章

html GoogleMapのルート検索APIのカスタムhttp://bl.ocks.org/ANTON072/0355e0a133b3ddf217cb

ruby 2015年就职情报サイトから,企业名で検索して绍介ページURLを取得する。

python WARPの検索APIを利用するコードの骨组み.Jupyterに埋め込むととりあえずJSONを取得できます。

python 蟒蛇の瓶子で书いているAPIをテストするために,WebTest的を使ったテストツールを试してみました.unittestの基本的な构成のみですが,自分用メモ及公开しておきます。

text node.js中で简易サーバを构筑

html 谷歌検索にキーワードをパラメータで渡す