//------------------------GoogleMapǂݍ---------------------------------------------------------

    google.load("maps", "2.x");

   var map = null;
    var geocoder = null;

    function initialize() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(35.4619, 133.0510), 13);
        geocoder = new GClientGeocoder();
        map.addControl(new GSmallZoomControl());
      }
    }

    function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 13);
              var marker = new GMarker(point);
              map.addOverlay(marker);
            }
          }
        );
      }
    }



      google.setOnLoadCallback(initialize);
//--------------------------------------------------------------------------------------------------

