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

javascript - How to locate react-leaflet map to user's current position and get the borders for this map? - Stack Overfl

programmeradmin1浏览0评论

I need to locate react-leaflet map to user's current position and get the borders for this map. I tried to apply the following code, but faced the error:

TypeError: Cannot read property 'locate' of undefined (anonymous function)

Please help me!

import React, { useState, useEffect, useRef } from 'react';
import restaurantsInfo from "./RestaurantsList.json";
import "./App.css";
import { MapContainer, Marker, Popup, TileLayer, useMapEvents } from "react-leaflet";
import { Icon, latLng } from "leaflet";
import Restaurants from "./Restaurants.js";
import LocationMarker from "./LocationMarker.js";
import L from 'leaflet';

const myLocation = [49.1951, 16.6068];
const defaultZoom = 13;

export default function App() {

  const mapRef = useRef();
  useEffect(() => {
    const { current = {} } = mapRef;
    const { leafletElement: map } = current;
    map.locate({
    setView: true,
    });
    map.on('locationfound', handleOnLocationFound);
  }, []);

  function handleOnLocationFound(event) {
    const { current = {} } = mapRef;
    const { leafletElement: map } = current;
    const latlng = event.latlng;
    const radius = event.accuracy;
    const circle = L.circle(latlng, radius);
    circle.addTo(map);
  }

  return (
    <div class="container">
    <div style={{height: '400px', width: '500px'}} class="map">
    
    <MapContainer ref={mapRef} center={myLocation} zoom={defaultZoom} scrollWheelZoom={false}>
    <TileLayer
      attribution='&copy; <a href=";>OpenStreetMap</a> contributors'
      url="https://{s}.tile.openstreetmap/{z}/{x}/{y}.png"
    />
< /MapContainer >

I need to locate react-leaflet map to user's current position and get the borders for this map. I tried to apply the following code, but faced the error:

TypeError: Cannot read property 'locate' of undefined (anonymous function)

Please help me!

import React, { useState, useEffect, useRef } from 'react';
import restaurantsInfo from "./RestaurantsList.json";
import "./App.css";
import { MapContainer, Marker, Popup, TileLayer, useMapEvents } from "react-leaflet";
import { Icon, latLng } from "leaflet";
import Restaurants from "./Restaurants.js";
import LocationMarker from "./LocationMarker.js";
import L from 'leaflet';

const myLocation = [49.1951, 16.6068];
const defaultZoom = 13;

export default function App() {

  const mapRef = useRef();
  useEffect(() => {
    const { current = {} } = mapRef;
    const { leafletElement: map } = current;
    map.locate({
    setView: true,
    });
    map.on('locationfound', handleOnLocationFound);
  }, []);

  function handleOnLocationFound(event) {
    const { current = {} } = mapRef;
    const { leafletElement: map } = current;
    const latlng = event.latlng;
    const radius = event.accuracy;
    const circle = L.circle(latlng, radius);
    circle.addTo(map);
  }

  return (
    <div class="container">
    <div style={{height: '400px', width: '500px'}} class="map">
    
    <MapContainer ref={mapRef} center={myLocation} zoom={defaultZoom} scrollWheelZoom={false}>
    <TileLayer
      attribution='&copy; <a href="http://osm/copyright">OpenStreetMap</a> contributors'
      url="https://{s}.tile.openstreetmap/{z}/{x}/{y}.png"
    />
< /MapContainer >
Share Improve this question edited Mar 6, 2021 at 18:20 kboul 14.6k5 gold badges47 silver badges58 bronze badges asked Mar 5, 2021 at 22:01 HelenHelen 1871 gold badge1 silver badge8 bronze badges 1
  • you can get ther bounds of the map with map.getBounds() – Falke Design Commented Mar 6, 2021 at 8:30
Add a ment  | 

1 Answer 1

Reset to default 10

You need a custom ponent that will do that job and will be child of MapContainer. Get the bounding box from locationfound event.bounds

 function LocationMarker() {
    const [position, setPosition] = useState(null);
    const [bbox, setBbox] = useState([]);

    const map = useMap();

    useEffect(() => {
      map.locate().on("locationfound", function (e) {
        setPosition(e.latlng);
        map.flyTo(e.latlng, map.getZoom());
        const radius = e.accuracy;
        const circle = L.circle(e.latlng, radius);
        circle.addTo(map);
        setBbox(e.bounds.toBBoxString().split(","));
      });
    }, [map]);

    return position === null ? null : (
      <Marker position={position} icon={icon}>
        <Popup>
          You are here. <br />
          Map bbox: <br />
          <b>Southwest lng</b>: {bbox[0]} <br />
          <b>Southwest lat</b>: {bbox[1]} <br />
          <b>Northeast lng</b>: {bbox[2]} <br />
          <b>Northeast lat</b>: {bbox[3]}
        </Popup>
      </Marker>
    );
  }

Use it here

<MapContainer
      center={[49.1951, 16.6068]}
      ...
      <LocationMarker />
 </MapContainer>

Demo

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论