Google Maps APIを使用して、複数の場所が正しく表示されています。私は、対応するリンクがクリックされたときに、場所を中心にするために使用したいリンクを追加しました。クリック時のパンとセンターのGoogleマップマーカー
私はJSFiddleでコードを更新する必要があり、私は場所を中心にonclickを追加したが、そのは
<a id="1" href="#">Go to 1</a><br>
<a id="2" href="#">Go to 2</a><br>
<a id="3" href="#">Go to 3</a><br>
<a id="4" href="#">Go to 4</a><br>
<a id="5" href="#">Go to 5</a><br>
var labels = '123456';
var labelIndex = 0;
var locations = [
['Bondi Beach', -33.890542, 151.274856, 4],
['Coogee Beach', -33.923036, 151.259052, 5],
['Cronulla Beach', -34.028249, 151.157507, 3],
['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
['Maroubra Beach', -33.950198, 151.259302, 1]
];
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 10,
center: new google.maps.LatLng(-33.92, 151.25),
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var infowindow = new google.maps.InfoWindow();
var marker, i;
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map,
label: labels[labelIndex++ % labels.length],
});
};
$("a").click(function(){
//zoom in on location
var id = ($(this).data('id'));
google.maps.event.trigger(id , "resize");
map.panTo(marker.getPosition());
map.setZoom(14);
return false;
});