开发者问题收集

react-leaflet 标记已损坏

2021-10-31
295

我尝试使用 react-leaflet 在我的 react 应用程序上显示地图,我做了基于文档的事情,但由于某种原因,我的标记坏了,这是我的代码

const foodIcon = new L.icon({
        iconUrl: require('../images/makanan.png'),
        iconSize: [35,45]
    })

    const position = [51.505, -0.09]


               <div id="map">
                      <div className="map-container">
                            <MapContainer style={{ width: '100%', height: '600px' }} center={position} zoom={13} scrollWheelZoom={false}>
                                <TileLayer
                                    attribution='&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
                                    url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
                                />
                                <Marker position={position} icon={ foodIcon }>
                                <Popup>
                                    Hello
                                </Popup>
                                </Marker>
                            </MapContainer>
                       </div>
1个回答

仔细检查图片路径,以及图片是否放置在正确的位置。对我来说很管用。

演示

kboul
2021-10-31