リーフレット マップでカスタム アイコンを使用することはできますか? 私は次のようなことをしようとしました:
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);
}
しかし、私はうまくいきませんでした。誰もそれを行うための最良の方法を知っていますか? アイコンが間違ったサイズで表示され、別の位置にも表示される