鹿児島・熊本阿蘇のゴルフ場
ゴルフ場・交通アクセス
グループゴルフ場
function attachMessage(marker, msg) {
google.maps.event.addListener(marker, 'click', function(event) {
new google.maps.InfoWindow({
content: msg
}).open(marker.getMap(), marker);
});
}
// 位置情報と表示データの組み合わせ
var data = new Array();//マーカー位置の緯度経度
data.push({position: new google.maps.LatLng(31.639911,130.415504), content: '南九州カントリークラブ'});
data.push({position: new google.maps.LatLng(31.530023,130.94295), content: '大隅カントリークラブ'});
data.push({position: new google.maps.LatLng(28.41646572483292 , 129.53292846679688), content: '奄美カントリークラブ'});
data.push({position: new google.maps.LatLng(31.796782,130.418675), content: 'グリーンヒルカントリークラブ'});
data.push({position: new google.maps.LatLng(32.856155,130.946633), content: '阿蘇グリーンヒルカントリークラブ'});
var myMap = new google.maps.Map(document.getElementById('map'), {
zoom: 6,//地図縮尺
center: new google.maps.LatLng(30.593001, 130.991363),//地図の中心点
scrollwheel: false,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
for (i = 0; i < data.length; i++) {
var myMarker = new google.maps.Marker({
position: data[i].position,
map: myMap
});
attachMessage(myMarker, data[i].content);
}
戻る
(c)南九州開発株式会社