SYNCERのロゴ
アイキャッチ画像

Polygon.setEditable()

Polygon.setEditable()はPolygonクラスのメソッドです。ポリゴンの編集の有効、無効をセットします。

構文

setEditable( editable:boolean )

パラメータ

返り値

返り値はありません。

デモ

メソッドを実行すると、ポリゴンの編集の有効、無効をセットします。

var polygon = new google.maps.Polygon( {
	map: map ,
	paths: [
		new google.maps.LatLng( 35.7113 , 139.8099 ) ,
		new google.maps.LatLng( 35.7106 , 139.8088 ) ,
		new google.maps.LatLng( 35.7091 , 139.8088 ) ,
		new google.maps.LatLng( 35.7088 , 139.8107 ) ,
		new google.maps.LatLng( 35.7100 , 139.8120 ) ,
		new google.maps.LatLng( 35.7093 , 139.8135 ) ,
		new google.maps.LatLng( 35.7116 , 139.8128 ) ,
		new google.maps.LatLng( 35.7109 , 139.8120 ) ,
	] ,
	editable: true ,
} ) ;

// メソッドを実行
polygon.setEditable( false ) ;

サンプルコード

<!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 ,
	} ) ;

	// Polygon
	var polygon = new google.maps.Polygon( {
		map: map ,
		paths: [
			new google.maps.LatLng( 35.7113 , 139.8099 ) ,
			new google.maps.LatLng( 35.7106 , 139.8088 ) ,
			new google.maps.LatLng( 35.7091 , 139.8088 ) ,
			new google.maps.LatLng( 35.7088 , 139.8107 ) ,
			new google.maps.LatLng( 35.7100 , 139.8120 ) ,
			new google.maps.LatLng( 35.7093 , 139.8135 ) ,
			new google.maps.LatLng( 35.7116 , 139.8128 ) ,
			new google.maps.LatLng( 35.7109 , 139.8120 ) ,
		] ,
		editable: true ,
	} ) ;

	// fit bounds
	var latLngBounds = new google.maps.LatLngBounds() ;

	polygon.getPaths().forEach( function ( latLngs ) {
		latLngs.forEach( function ( latLng ) {
			latLngBounds.extend( latLng ) ;
		} ) ;
	} ) ;

	map.fitBounds( latLngBounds ) ;

	// Method
	document.getElementById( "method" ).onclick = function () {
		var response = polygon.setEditable() ;
		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>

デモページを開く

  • Twitterでシェア
  • Facebookでシェア
  • Google+でシェア
  • はてなブックマークでシェア
  • pocketに保存
  • LINEでシェア
更新履歴
2015年9月1日 (火)
コンテンツを公開しました。