可以在我的宣传单地图上使用自定义图标吗? 我试着做类似的事情:
function onLocationFound(e) {
var radius = e.accuracy / 2;
var customIcon = L.icon({
iconUrl: 'images/marker_icon_2x.png',
shadowUrl: 'images/marker_shadow.png'
});
L.marker(e.latlng).addTo(map)
.bindPopup("You are within " + radius + " meters from this point").openPopup();
L.circle(e.latlng, radius).addTo(map);
}
但是我没有工作,有没有人知道最好的方法呢? 图标显示的尺寸错误,也位于其他位置