gpt4 book ai didi

javascript - 如何在 JS 中的 Google map 上的标记上方添加文本?

转载 作者:行者123 更新时间:2023-11-30 08:25:40 27 4
gpt4 key购买 nike

我找到了 exactly the same question对于 Java,但我想在 JS 中这样做。那么,如何在 JS 中的 Google map 上的标记上方添加文本?​​

最佳答案

如我的评论所述,您可以为 map 标记标签使用多个字母。

如果在实例化 new google.maps.Marker 类时使用 label 属性,则向它传递一个对象,其中一个属性为 text.

var marker = new google.maps.Marker({
position: new google.maps.LatLng(0, 0),
icon: 'https://developers.google.com/maps/documentation/javascript/examples/full/images/beachflag.png',
label: { color: '#00aaff', fontWeight: 'bold', fontSize: '14px', text: 'Your text here' }
});

检查 fiddle here .

关于javascript - 如何在 JS 中的 Google map 上的标记上方添加文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46159012/

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