我正在使用react-leaflet
地图,并且运行时我必须更新标记的方向,我正在使用leaflet-rotatedmarker
with的库react-leaflet
。标记方向在加载和重新加载时工作正常,但在从props接收值后未更新。
<Marker
key={1}
position={{ lat: position.latitude, lng: position.longitude }}
rotationAngle={position.course}
rotationOrigin="center"
icon={L.icon({
iconUrl: "xyz.svg",
iconSize: [50,50],
iconAnchor: [25, 25]})}
/>
我只想更新rotationAngle
接收新的角度值。
请指教,我不知道如何使用setRotationAngle
的react-leaflet
谢谢