gpt4 book ai didi

javascript - 在谷歌地图 API v3 和 MarkerWithLabel 上添加多个事件监听器

转载 作者:行者123 更新时间:2023-11-30 00:32:38 24 4
gpt4 key购买 nike

我想为我的每个标记添加一个点击事件以将其置于中心。我使用库“MarkerWithLabel”,当我点击一个标记时, map 每次都会在最后一个标记上缩放。

这是我的代码:

var map         = new google.maps.Map(document.getElementById('map-canvas')),
bounds = new google.maps.LatLngBounds(),
marker = [],
grafxUrl = $('#map-canvas').data('grafx'),
image = {
url : grafxUrl + 'universal/icons/pin_locator.png',
size: new google.maps.Size(24, 31),
origin: new google.maps.Point(0,0),
anchor: new google.maps.Point(12, 31)
};

for (var i = 0; i < response.length; i++) {
marker = new MarkerWithLabel({
position: new google.maps.LatLng(response[i].fLatitude, response[i].fLongitude),
map: map,
icon : image ,
title : (i+1)+' '+response[i].sName,
labelContent: (i+1),
labelAnchor: new google.maps.Point(3, 25),
labelClass: "markerNum", // the CSS class for the label
});
google.maps.event.addListener(marker, 'click', function() {
map.setZoom(15);
map.setCenter(marker.position);
});
bounds.extend(marker.position);
//now fit the map to the newly inclusive bounds
map.fitBounds(bounds);
}

我的脚本有什么问题?

非常感谢。

最佳答案

这是一个完整的示例,说明如何扩展边界对象以显示 map 上的所有标记。

function initialize() {

var southWest = new google.maps.LatLng(40.744656, -74.005966);
var northEast = new google.maps.LatLng(34.052234, -118.243685);
var lngSpan = northEast.lng() - southWest.lng();
var latSpan = northEast.lat() - southWest.lat();

var map = new google.maps.Map(document.getElementById("map-canvas"), {
zoom: 12,
center: new google.maps.LatLng(0, 0),
mapTypeId: google.maps.MapTypeId.ROADMAP
});

// Create the bounds object
var bounds = new google.maps.LatLngBounds();

// Create random markers
for (var i = 0; i < 100; i++) {

// Calculate a random position
var position = new google.maps.LatLng(southWest.lat() + latSpan * Math.random(), southWest.lng() + lngSpan * Math.random());

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

google.maps.event.addListener(marker, 'click', (function (marker, i) {
return function () {
map.setZoom(5);
map.setCenter(marker.position);
}
})(marker, i));

// Extend the bounds with the last marker position
bounds.extend(position);
}

// Fit map to the extended bounds
map.fitBounds(bounds);
}

initialize();

这会在定义的边界(西南/东北坐标)内创建 100 个随机标记,然后扩展边界对象并最终使 map 适合该边界对象。查看标记变量是如何定义的(在 for 循环内)以及如何调用 fitBounds()(在 for 循环外)。这同样适用于您的代码。

下面是一个工作演示。希望这对您有所帮助!

JSFiddle demo

关于javascript - 在谷歌地图 API v3 和 MarkerWithLabel 上添加多个事件监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28716921/

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