如何在谷歌地图上显示多个标记
我是谷歌地图 API 的新手。我的问题是我们可以使用 API 在地图上显示多个标记吗???
I m new to google map API. My question is can we show multiple markers on the map using the API???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,是的,你可以。只需为要添加到地图中的每个标记位置调用
new google.maps.Marker()
函数即可。我假设您已经创建了一张名为“地图”的地图。这将为其添加 2 个标记。
Yes, yes you can. Just call the
new google.maps.Marker()
function for each marker location you want to add to your map.I assume you've already got a map created, called 'map'. This will add 2 markers to it.