if(GBrowserIsCompatible())
{
var point = new Array();
var nCnt = 0;
var gmarker = new Array();
var htmls = new Array();
point[0] = new GLatLng(34.873096,138.318206); htmls[0] = '<img src="../kankou/images/logo.gif" width="215" height="55"><p style="font-size:12px; margin-top:5px;">〒425-0028 静岡県焼津市駅北1-2-2<br style="clear:both;" />http://www.kuretake-inn.com/yaiz/</p>';
point[1] = new GLatLng(34.905486,138.316924); htmls[1] = '<p style="font-size:12px; margin-top:5px;"><strong>高草山</strong><br>静岡県焼津市<br style="clear:both;" />';
point[2] = new GLatLng(34.890133,138.330209); htmls[2] = '<p style="font-size:12px; margin-top:5px;"><strong>花沢の里</strong><br>静岡県焼津市花沢<br style="clear:both;" />';
point[3] = new GLatLng(34.822783,138.331564); htmls[3] = '<p style="font-size:12px; margin-top:5px;"><strong>ディスカバリーパーク焼津</strong><br>静岡県焼津市田尻2968-1<br style="clear:both;" />';
point[4] = new GLatLng(34.857121,138.326583); htmls[4] = '<p style="font-size:12px; margin-top:5px;"><strong>アクアスやいづ</strong><br>静岡県焼津市鰯ヶ島136-26<br style="clear:both;" />';
point[5] = new GLatLng(34.864472,138.306515); htmls[5] = '<p style="font-size:12px; margin-top:5px;"><strong>焼津小泉八雲記念館</strong><br>焼津市三ケ名1550 <br style="clear:both;" />';
point[6] = new GLatLng(34.833145,138.338149); htmls[6] = '<p style="font-size:12px; margin-top:5px;"><strong>和田浜海岸</strong><br>静岡県焼津市田尻<br style="clear:both;" />';
point[7] = new GLatLng(34.859573,138.327146); htmls[7] = '<p style="font-size:12px; margin-top:5px;"><strong>新焼津漁港</strong><br>静岡県焼津市<br style="clear:both;" />';
point[8] = new GLatLng(34.899773,138.349325); htmls[8] = '<p style="font-size:12px; margin-top:5px;"><strong>大崩海岸</strong><br>静岡県焼津市小浜<br style="clear:both;" />';
point[9] = new GLatLng(34.880459,138.303071); htmls[9] = '<p style="font-size:12px; margin-top:5px;"><strong>焼津さかなセンター窶踀</strong><br>静岡県焼津市八楠4-13-7<br style="clear:both;" />';
function createMarker(point,htmlData)
{
var iconSet = new GIcon();
iconSet.image            = "mapimage/"+ nCnt +".png"; //アイコン画像パス
iconSet.shadow           = "mapimage/shadow.png"; //影画像パス
iconSet.iconSize         = new GSize(21, 34); //アイコンサイズ
iconSet.shadowSize       = new GSize(39, 34); //影サイズ
iconSet.iconAnchor       = new GPoint(10, 34); //アイコンの表示開始位置（0,0）は左上角から
iconSet.infoWindowAnchor = new GPoint(15, 20); //情報ウィンドウの表示開始位置
iconSet.infoShadowAnchor = new GPoint(15, 20); //情報ウィンドウの影の表示開始位置
var marker = new GMarker(point,iconSet);
GEvent.addListener(marker, 'click', function(){
marker.openInfoWindowHtml(htmlData);
});
return marker;
}
function myclick(HtmlCnt) {
gmarker[HtmlCnt].openInfoWindowHtml(htmls[HtmlCnt]);
}
var map = new GMap2(document.getElementById("map"));
//操作バー（左）
map.addControl(new GLargeMapControl());
//表示切替（上）
//map.addControl(new GMapTypeControl());
//ダブルクリックズーム＆スムージング
map.enableContinuousZoom();
//初期表示の画面の中心座標
map.setCenter(new GLatLng(34.873096,138.318206), 11);
//初期フキダシ表示内容
map.openInfoWindowHtml(new GLatLng(34.873096,138.318206),'<img src="../kankou/images/logo.gif" width="215" height="55"><p style="font-size:12px; margin-top:5px;">〒425-0028 静岡県焼津市駅北1-2-2<br style="clear:both;" />http://www.kuretake-inn.com/yaiz/</p>');
var nDataNum = point.length;
for(nCnt=0;nCnt<nDataNum;nCnt++)
{
var marker = createMarker(point[nCnt],htmls[nCnt]);
gmarker[nCnt] = marker;
map.addOverlay(marker);
}
}

