﻿function shopMap( shop_code, address )
{
// 詳細
//new Ajax.Updater( "result" + shop_code, "inc_shop_detail.php?shop_code=" + shop_code, { method: "get" } );


// 地図
var map			= null;
var geocoder	= null;

if ( GBrowserIsCompatible() ) {
	var map = new GMap2( document.getElementById( "map" + shop_code ));
    // GClientGeocoderを初期化
    geocoder = new GClientGeocoder();
    // 住所指定
	geocoder.getLatLng( address,
	  function(point) {
	    if (!point) {
	      alert(address + " の地図を表示できませんでした。");
	      unset(map);
	      unset(geocoder);
	    } else {
		  map.addControl( new GSmallMapControl() );
		  map.addControl( new GMapTypeControl() );
	      map.setCenter(point, 14);
	      map.addOverlay( new GMarker( point ) );
	    }
	  }
	);
	
}

// 地図サイズ指定
document.getElementById( "map" + shop_code ).style.width = "450px";
document.getElementById( "map" + shop_code ).style.height = "273px";

}
