gpt4 book ai didi

google-maps - 导致链接平移并打开 map 中的标记

转载 作者:行者123 更新时间:2023-12-02 06:38:22 25 4
gpt4 key购买 nike

JS fiddle : http://jsfiddle.net/megatimes/NVDLf/7/

我有一个 map ,它从一个数组创建多个标记。 map 下方是一些链接,单击这些链接后,我想让 map 平移到其各自的标记,并打开信息窗口。

鉴于我不想自己生成链接作为创建标记的循环的一部分,我该怎么做?

我相当确定这是一个范围问题,因为 map 下方的链接每个都打开位置数组中的最后一项,但我似乎无法弄清楚如何绕过它。

谢谢

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>

最佳答案

你可以这样做:

http://jsfiddle.net/6vjwd/2/embedded/result/

使用 createMarker 函数将信息窗口与标记相关联:

function createMarker(latlng, html)
{
var marker = new google.maps.Marker({
position: latlng,
map: map
});

google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent(html);
infowindow.open(map, marker);
});
return marker;
}

还有一个全局数组,允许从 HTML 点击监听器中引用它们。

外部链接取决于知道位置的顺序。或者,如果您想按“名称”查找它们,您可以使用“关联”数组,并将名称作为索引。

按名称索引标记:

http://jsfiddle.net/6nqj8/1/embedded/result/

关于google-maps - 导致链接平移并打开 map 中的标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13053178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com