Marker.setTitle()
Marker.setTitle()はMarkerクラスのメソッドです。マーカーのラツールチップの内容をセットします。マーカーにポインターをホバーした時に表示されます。
構文
パラメータ
title
string
テキストを文字列で指定する。
返り値
返り値はありません。
デモ
メソッドを実行すると、マーカーにツールチップの内容をセットします。
var marker = new google.maps.Marker( {
map: map ,
position: new google.maps.LatLng( 43.0611, 141.3564 ) ,
title: "SYNCER" ,
} ) ;
// メソッドを実行
map.setTitle( "YEAH!!" ) ;
サンプルコード
<!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.0686601740126, 141.35075529999995 ) ,
zoom: 18 ,
} ) ;
// Marker
var marker = new google.maps.Marker( {
map: map ,
position: map.getCenter() ,
} ) ;
// Method
document.getElementById( "method" ).onclick = function () {
var response = marker.setTitle( "SYNCER" ) ;
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>