JS フィドル: http://jsfiddle.net/megatimes/NVDLf/7/
配列から複数のマーカーを作成するマップがあります。マップの下にはいくつかのリンクがあり、クリックすると、マップがそれぞれのマーカーに移動し、情報ウィンドウが開きます。
マーカーを作成するループの一部としてリンク自体を生成したくない場合、どうすればこれを行うことができますか?
マップの下のリンクはそれぞれ場所配列の最後の項目を開くため、これはスコープの問題であると確信していますが、それを回避する方法がわかりません。
ありがとう
var locations = [
[
"Location 1",
"215 West Girard Avenue 19123",
"39.9695601",
"-75.1395161"
],
[
"Location 2",
"5360 Old York Road 19141",
"40.034038",
"-75.145223"
],
[
"Location 3",
"1350 W Girard Avenue 19123",
"39.9713524",
"-75.1590360"
]
];
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 12,
center: new google.maps.LatLng(39.9995601, -75.1395161),
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][2], locations[i][3]),
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}
$(function() {
$('#locations h3 a').each(function() {
$(this).on('click', function() {
google.maps.event.trigger(marker, 'click');
})
});
});
<div id="map" style="width: 500px; height: 400px;"></div>
<div id="locations">
<h3><a href="#">Location 1</a></h3>
<p>Arbitrary content about 1</p>
<h3><a href="#">Location 2</a></h3>
<p>Arbitrary content about 2</p>
<h3><a href="#">Location 3</a></h3>
<p>Arbitrary content about 3</p>
</div>