function load() {
    if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("gmap"));
        map.setCenter(new GLatLng(34.0506282398795, 131.80031776428223), 15);
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.addControl(new GScaleControl());
        map.addControl(new GOverviewMapControl());

        var icon         = new GIcon();
        icon.image      = "../images/guide/access/i_pointer.gif";
        icon.iconSize   = new GSize(112, 38);
        icon.printImage = "../images/guide/access/i_pointer.gif";
        icon.iconAnchor = new GPoint(39, 38);
        var marker       = new GMarker(new GLatLng(34.0506282398795, 131.80031776428223), {icon:icon});
        map.addOverlay(marker);
    }
}
