gpt4 book ai didi

javascript - 根据请求加载 Google map 标记 HTML

转载 作者:行者123 更新时间:2023-12-02 20:03:17 25 4
gpt4 key购买 nike

是否可以仅在用户实际单击 Google map 标记时加载其内容(即“工具提示”中显示的 HTML)?

我的网站上嵌入了一个漂亮的 Google map ,它运行良好 - 一次只需 200 个标记。但现在我们想要显示大量的标记(3900+),目前所有用于显示工具提示的小型 HTML 页面都是在添加标记时设置的。理想情况下,该 HTML 将使用 AJAX 加载。

最佳答案

是的,当您添加到 map 中的标记被单击时,您需要通过向标记添加单击监听器来加载所需的数据。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3&sensor=true_or_false"
type="text/javascript"></script>

<div id="map_canvas"> </div>

<script>
var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
var myOptions = {
zoom: 4,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);


var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Hello World!"
});
google.maps.event.addListener(marker, 'click', function() {

// When clicked on the marker I use jquery to request some Html
// then show in the contents of an info window
$.ajax({
url: 'http://www.test.com/get-data/',
dataType: 'html',
success: function (data) {
var infowindow = new google.maps.InfoWindow(
{ content: data,
size: new google.maps.Size(50,50),
position: marker.position
});
infowindow.open(map);
}

});

});

</script>

关于javascript - 根据请求加载 Google map 标记 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7723244/

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