﻿function loadgooglemap() {
    if (GBrowserIsCompatible()) {

        // 地図生成
        var map = new GMap2(document.getElementById("googlemap"), { size: new GSize(540, 900) });
        var point = new GLatLng(35.008948, 135.769279);
        var setpostion = new GLatLng(35.007389, 135.770116);
        map.setCenter(setpostion, 17);

        // マーカー追加
        var icon = new GIcon();
        icon.image = "./images/layout/googlemaplogo.png";
        icon.iconSize = new GSize(150, 80);
        icon.iconAnchor = new GPoint(74, 80);

        var marker = new GMarker(point, icon);
        map.addOverlay(marker);

        // 拡大・縮小・縮尺
        map.addControl(new GLargeMapControl());
        map.addControl(new GScaleControl()); 
      }
}
