Polyline.getMap()
Polyline.getMap()はPolylineクラスのメソッドです。ポリラインが設置されている地図を取得します。
構文
getMap()
パラメータ
パラメータはありません。
返り値
Map
地図を表すMapクラスのインスタンス。地図に設置していない場合はundefinedが返る。
デモ
メソッドを実行すると、ポリラインが設置されている地図を取得します。
var polyline = new google.maps.Polyline( {
map: map ,
path: [
new google.maps.LatLng( 35.794507 , 139.790788 ) ,
new google.maps.LatLng( 35.794007 , 139.791788 ) ,
] ,
} ) ;
// メソッドを実行
polyline.getMap() ;
サンプルコード
<!DOCTYPE html>
<html>
<head>
<style>
#map-canvas {
width: 600px ;
height: 600px ;
}
</style>
</head>
<body>
<div id="map-canvas"></div>
<p><button id="method">メソッドを実行</button><button id="reset">リセット</button></p>
<p><textarea id="response"></textarea></p>
<script src="//maps.googleapis.com/maps/api/js?key={APIキー}"></script>
<script>
function initialize() {
var mapDiv = document.getElementById( "map-canvas" ) ;
var responseTextarea = document.getElementById( "response" ) ;
responseTextarea.value = "" ;
// Map
var map = new google.maps.Map( mapDiv, {
center: new google.maps.LatLng( 43.0611, 141.3564 ) ,
zoom: 7 ,
} ) ;
// Polyline
var polyline = new google.maps.Polyline( {
map: map ,
path: [
new google.maps.LatLng( 35.794507 , 139.790788 ) ,
new google.maps.LatLng( 35.794007 , 139.791788 ) ,
] ,
} ) ;
// fit bounds
var latLngBounds = new google.maps.LatLngBounds() ;
polyline.getPath().forEach( function ( latLng ) {
latLngBounds.extend( latLng ) ;
} ) ;
map.fitBounds( latLngBounds ) ;
// Method
document.getElementById( "method" ).onclick = function () {
var response = polyline.getMap() ;
try{ response = typeof response == "object" ? JSON.stringify( response ) : response ; }catch(e){}
responseTextarea.value = response ;
console.log( response ) ;
}
}
// Reset
document.getElementById( "reset" ).onclick = initialize ;
initialize() ;
</script>
</body>
</html>