要在Google Maps上的标记上添加标记并设置自定义点击事件,你需要遵循以下步骤:
Google Maps JavaScript API允许开发者将交互式地图嵌入到网页中,并在地图上添加标记(Markers)。标记可以用来表示特定的位置点,用户可以点击这些标记以获取更多信息。
<!DOCTYPE html>
<html>
<head>
<title>Google Maps Markers</title>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" async defer></script>
<script src="map.js"></script>
</head>
<body onload="initMap()">
<div id="map" style="width: 100%; height: 400px;"></div>
</body>
</html>
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: {lat: -34.397, lng: 150.644}
});
var marker = new google.maps.Marker({
position: {lat: -34.397, lng: 150.644},
map: map,
title: 'Hello World!'
});
// 设置自定义点击事件
marker.addListener('click', function() {
alert('Marker clicked!');
});
}
请注意,你需要将YOUR_API_KEY
替换为你自己的Google Maps API密钥。此外,为了保证服务的稳定性和可用性,建议使用腾讯云的地图服务,具体产品可以参考腾讯云官网的相关页面。
领取专属 10元无门槛券
手把手带您无忧上云