marker icon isn't showing in Leaflet

后端 未结 4 1492
栀梦
栀梦 2021-01-26 20:46

I \'ve put together a very simple React / Leaflet demo but the marker icon is not showing at all. Full running code is here.

Here\'s what I have in my componentDid

4条回答
  •  北海茫月
    2021-01-26 21:24

    Try to add an icon:

    const myIcon = L.icon({
       iconUrl: 'myIcon.png',
       // ...
    });
    
    L.marker([37.98, 23.72], {icon: myIcon})
      .addTo(this.map)
    

    Perhaps you have some problems with the default one: https://leafletjs.com/reference-1.6.0.html#icon-default

提交回复
热议问题