作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
function createMarker(latlng, item) {
var marker = new google.maps.Marker({
position: latlng,
map: map
});
这部分代码。在网站上,它显示为标准标记,它适合我们所有人,但红色除外。如何将其更改为其他颜色?
最佳答案
您应该使用icon
属性(property)。例如,
var marker = new google.maps.Marker({
position: latlng,
map: map,
icon: 'http://maps.google.com/mapfiles/ms/icons/green-dot.png'
});
google.com 上有多种颜色可供选择。只需将 green-dot
替换为您的颜色,例如:
http://maps.google.com/mapfiles/ms/icons/green-dot.png
http://maps.google.com/mapfiles/ms/icons/blue-dot.png
http://maps.google.com/mapfiles/ms/icons/red-dot.png
http://maps.google.com/mapfiles/ms/icons/yellow-dot.png
(要获取图像 URL,请将鼠标悬停在其上或右键单击 →“复制图像位置” 等)
更多信息:https://sites.google.com/site/gmapsdevelopment/或search了解更多。
关于google-maps-markers - 如何更改标记颜色?谷歌地图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32651238/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!