在Google地图的屏幕中心放置标记可以通过以下步骤实现:
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY"></script>
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 37.7749, lng: -122.4194},
zoom: 12
});
var marker = new google.maps.Marker({
position: map.getCenter(),
map: map,
title: 'Hello World!'
});
var marker = new google.maps.Marker({
position: map.getCenter(),
map: map,
title: 'Hello World!',
icon: 'custom_icon.png'
});
以上是在Google地图的屏幕中心放置标记的基本步骤。根据实际需求,你可以进一步探索Google Maps API的其他功能和选项,例如添加信息窗口、绘制路线等。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云