// osakaGoogle Map Document
    //<![CDATA[
function load() {
    if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GLargeMapControl());
        map.setCenter(new GLatLng(34.671808382801,135.49979592852), 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(34.671808382801,135.49979592852);
        var marker = new GMarker(point,icon);
        map.addOverlay(marker);
    }
}
//]]>
