GoogleMapSample:Hello World

公式サイトより。簡単な地図を表示するサンプル。


window.onload = function() {
if (GBrowserIsCompatible()) {
var map = new GMap(document.getElementById("map"));
<p id="map"><!--GoogleMap--></p>
map.centerAndZoom(new GPoint(-122.1419, 37.4419), 4);
}
}
<div id="map"><!--GoogleMap--></div>

var map = new GMap(document.getElementById("map"));
地図を表示する要素のIDを指定する。

map.centerAndZoom(new GPoint(-122.1419, 37.4419), 4);
GPointで地図の中心、後の数字で拡大率を指定する。

コメントを残す

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください