// nagoyaGoogle Map Document
    //<![CDATA[
function load() {
    if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GLargeMapControl());
        map.setCenter(new GLatLng(35.167223156552,136.88482009113), 17);
        var icon = new GIcon();
        icon.image = "icon.png";
        icon.iconSize = new GSize(30,30);
        icon.iconAnchor = new GPoint(30,30);
        var point = new GLatLng(35.167223156552,136.88482009113);
        var marker = new GMarker(point,icon);
        map.addOverlay(marker);
    }
}
//]]>
