'React Locate on map
I would like to add the module "React-leaflet-locate-control" on Map. Unfortunately, I have this error "TypeError: Cannot read property 'addLayer' of undefined" and I don't know how to correct this error.
Can you help me please ?
Here is my component Map :
import './Map.css';
import React, { Component } from 'react';
import { Map, TileLayer, Marker, Popup } from 'react-leaflet';
import L from "leaflet";
import { getLat, getLng } from '../../Store.js';
import SearchBar from '../SearchBar/SearchBar.js';
import LocateControl from 'react-leaflet-locate-control';
const customMarker = new L.icon({
iconUrl: "https://unpkg.com/[email protected]/dist/images/marker-icon.png",
iconSize: [25, 41],
iconAnchor: [13, 0]
});
export default class MapLeaflet extends Component {
constructor(props) {
super(props);
this.state = {
lat: getLat(),
lng: getLng(),
}
}
updateMarker = (e) => {
this.props.updateMarkerPosition(e.latlng.lat, e.latlng.lng);
this.setState({
lat: e.latlng.lat,
lng: e.latlng.lng
})
}
render() {
const position = [this.state.lat, this.state.lng]
const locateOptions = {
position: 'topright',
strings: {
title: 'Show me where I am, yo!'
},
onActivate: () => {} // callback before engine starts retrieving locations
}
return (
<div className="map">
<Map center={position} zoom={13} className="map" onClick={this.updateMarker}>
<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={customMarker}>
<Popup>
A pretty CSS3 popup. <br /> Easily customizable.
</Popup>
</Marker>
<SearchBar />
<LocateControl options={locateOptions} startDirectly/>
</Map>
</div>
)
}
}
Solution 1:[1]
If you are using Typescript like me. I made it work with v2 using below component code
import L from 'leaflet';
import { withLeaflet, MapControl, MapControlProps } from 'react-leaflet';
import Locate from 'leaflet.locatecontrol';
import './Geolocate.css';
type GeolocateProps = L.Control.LocateOptions & MapControlProps;
class Geolocate extends MapControl<GeolocateProps> {
createLeafletElement(props: GeolocateProps) {
const { leaflet, ...options } = props;
const locate = Locate as any;
const lc = new locate(options);
return lc;
}
}
export default withLeaflet(Geolocate);
Additionally, you can skip including Font awesome and library's own css files and provide your own styles instead
Geolocate.css
.leaflet-control-locate a.leaflet-bar-part div {
background-image: url(../../images/geolocation.png);
background-size: 22px 74px;
background-position: top 2px left 2px;
background-repeat: no-repeat;
width: 30px;
height: 30px;
}
.leaflet-control-locate a.leaflet-bar-part div.loading {
background-position: top -24px left 2px;
}
.leaflet-control-locate.active a.leaflet-bar-part div.locate {
background-position: top -50px left 2px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.leaflet-control-locate a.leaflet-bar-part div {
background-image: url(../../images/geolocation-2x.png);
}
}
Of course you will have to install leaflet.locatecontrol using npm first
npm i leaflet.locatecontrol
Hope this helps.
Solution 2:[2]
You actually do not need any external module to get the current location in react or any other JavaScript libraries
you can use
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(position => //Do something with it );
}
Here is a react way :
const [currentLocation, setCurrentLocation] = React.useState([0, 0]);
//change [0,0] to something that makes sense to your users in case they deny access to location.
useEffect(() => {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
position =>
setCurrentLocation([position.coords.latitude, position.coords.longitude]))
}
}, []);
return (
<Map center={currentLocation} zoom={15}>
// the rest ie . TileLayer,Marker,Popup
</Map>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Saad |
| Solution 2 | Daniel |
