最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Maplibre marker- not asynchronous- only loading initial locaton - Stack Overflow

programmeradmin2浏览0评论

I have a maplibre component that has a marker over the user location- The user location coordinates are default 0,0 until i get their location and assign that to a usestate var. However the marker initialises at the 0,0 coordinates instead of the user location and doesn't move.

 <div className="w-full h-[400px] bg-blue-100 relative" >

  <Map ref={mapRef}
  onLoad={() => setMapReady(true)}
  initialViewState={{
    longitude: longitude,
    latitude: latitude,
    zoom: 5 }}
     mapStyle=".json?key=v7ONt1OhY3mea5iBLNea" >
    
  { latitude !== 0 && longitude !== 0 && 
  (<Marker longitude={longitude} latitude={latitude} anchor="bottom"  >   
     </Marker>)}
</Map>
  
 
</div>

When the location coordinates load the marker stays at the 0,0 location. How do i fix this?

I have a maplibre component that has a marker over the user location- The user location coordinates are default 0,0 until i get their location and assign that to a usestate var. However the marker initialises at the 0,0 coordinates instead of the user location and doesn't move.

 <div className="w-full h-[400px] bg-blue-100 relative" >

  <Map ref={mapRef}
  onLoad={() => setMapReady(true)}
  initialViewState={{
    longitude: longitude,
    latitude: latitude,
    zoom: 5 }}
     mapStyle="https://api.maptiler/maps/streets-v2/style.json?key=v7ONt1OhY3mea5iBLNea" >
    
  { latitude !== 0 && longitude !== 0 && 
  (<Marker longitude={longitude} latitude={latitude} anchor="bottom"  >   
     </Marker>)}
</Map>
  
 
</div>

When the location coordinates load the marker stays at the 0,0 location. How do i fix this?

Share Improve this question asked 2 days ago C A OB1 C A OB1 1255 silver badges15 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

The longitude and latitude fly to fun c should be in a use effect func. This fixes it

  useEffect(() => {
    if (mapReady && latitude !== 0 && longitude !== 0 && mapRef.current) {
      const map = mapRef.current.getMap();
      map.flyTo({
        center: [longitude, latitude],
        zoom: 15,
        speed: 1.2
      });

    }
  }, [latitude, longitude, mapReady]);
发布评论

评论列表(0)

  1. 暂无评论