Google Maps에서 두 지점 사이의 경로를 그리는 샘플
7269 단어 GoogleMapsAPI
API 키만 다시 작성하십시오.
sample.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Mapsで2地点間の経路を描画するサンプル</title>
<script src="https://code.jquery.com/jquery-2.2.1.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=●●●●●●●●●●"></script>
<script type="text/javascript">
$(function() {
var latlng1 = new google.maps.LatLng(35.705947, 139.651252); // VAL研究所
var latlng2 = new google.maps.LatLng(35.705469, 139.649610); // 高円寺駅
var map;
var directionsService = new google.maps.DirectionsService();
var directionsRenderer = new google.maps.DirectionsRenderer();
// 地図初期化のオプション
var mapOptions = {
zoom: 17,
center: latlng1,
mapTypeId: google.maps.MapTypeId.ROADMAP,
scaleControl: true,
};
// 地図を表示
map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
// ルートを取得
var request = {
origin: latlng1, // 出発地点の緯度、経度
destination: latlng2, // 到着地点の緯度、経度
travelMode: google.maps.DirectionsTravelMode.WALKING // ルートの種類
};
directionsService.route(request, function(result, status) {
directionsRenderer.setDirections(result); // 取得したルートをセット
directionsRenderer.setMap(map); // ルートを地図に表示
});
});
</script>
</head>
<body>
<div id="map_canvas" style="width: 100%; height: 600px;"></div>
</body>
</html>
WALKING
의 부분은 그 밖에 DRIVING
(차), BICYCLING
(자전거), TRANSIT
(대중교통)이 지정할 수 있다.Directions Service | Google Maps JavaScript API | Google Developers
Reference
이 문제에 관하여(Google Maps에서 두 지점 사이의 경로를 그리는 샘플), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/aosho235/items/c24ae08f5850b69fadf0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)