当前,我正在使用Maps api并添加了自己的图标,但是出于某种原因,地图同时显示了默认图标和我自己的图标,这是我的快速代码。我不确定两个图标都显示出我该怎么做。
主要问题是默认图标显示在我使用的任何图标上方,并且显示一个奇怪的双图标。
这是我的代码。
var myPin = {
url: "iconfinder_Beer_Mug_drink_3017884.png",
scaledSize: new google.maps.Size(30, 30),
origin: new google.maps.Point(0, 0),
zIndex: 100
}
var marker = new google.maps.Marker({
map: map,
icon: myPin,
label: {
text: bName,
color: "#00546e",
fontSize: "18px",
fontWeight: "bold",
zIndex: 100
},
position: results[0].geometry.location
});
感谢您的帮助!谢谢!
答案 0 :(得分:0)
更新:我读了代码,忘了创建了第二个生成标记实例,因为我打算测试它的2个不同版本,但忽略了注释其中之一。因此,它总是加载其中的2个。
所有内容都是固定的