gpt4 book ai didi

javascript - 将标记链接到 url Google map

转载 作者:数据小太阳 更新时间:2023-10-29 05:00:12 24 4
gpt4 key购买 nike

<分区>

简单问题:

我正在尝试将我的标记链接到 Google map (API v3) 上的外部 URL。可以只使用 http://www.google.com作为现在的链接。

Javascript:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
function initialize() {
var myLatlng = new google.maps.LatLng(-30.021664, 30.901578);
var mapOptions = {
zoom: 15,
center: myLatlng,
scrollwheel: false,
disableDefaultUI: true
}
var map = new google.maps.Map(document.getElementById('ContactMap'), mapOptions);
var image = '/Assets/Images/Icons/MapMarker.png';

var marker = new google.maps.Marker({
position: myLatlng,
map: map,
animation: google.maps.Animation.DROP,
icon: image,
title: 'Perspex'
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>

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