<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAvABrzCnRluKK0Cj97fTMThTNR7aHVSEFb0WbViWwc6F-_w9PjBSogZu_7UgOTbx25ka46X-fnGmyvw" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if(GBrowserIsCompatible()){
/* 地図インスタンス生成 */
var map=new GMap2(document.getElementById("map"));
/* ★地図が完全に読み込まれているか調べる */
document.getElementById("res").value=map.isLoaded()+"\n";
/* 中心地点 */
map.setCenter(new GLatLng(35.665246,139.712319),14);
/* ★地図が完全に読み込まれているか調べる */
document.getElementById("res").value+=map.isLoaded()+"\n";
/* マーカー追加 */
var marker=new GMarker(map.getCenter());
map.addOverlay(marker);
/* ★地図が完全に読み込まれているか調べる */
document.getElementById("res").value+=map.isLoaded();
}
}
window.onload=load;
window.unload=GUnload;
//]]>
</script>
<div id="map" style="width:425px;height:300px"><!-- 地図描画領域 --></div><br>
<form action="#">
<textarea cols="64" rows="2" id="res" style="width:421px;"></textarea>
</form>