How to add markers dynamically to React-Leaflet cards?
I want to add new markers when the user clicks on the map. And I can’t make it work.
import React, { Component } from 'react'
import { render } from 'react-dom';
import Control from 'react-leaflet-control';
import { Map, Marker, Popup, TileLayer, ZoomControl, ScaleControl } from 'react-leaflet';
import './Points.scss'
export default class PointsMap extends Component {
state = {
lat: 50.2,
lng: 30.2,
zoom: 13,
}
handleClick = (e) => {
this.addMarker();
}
addMarker() {
var marker3 = L.marker([50.5, 30.5]).addTo(this.refs.map);
const position2 = [50,30];
<Marker map={this.refs.map} position={position2} />
}
render () {
const position = [this.state.lat, this.state.lng]
return (
<Map ref='map' center={position} zoom={this.state.zoom} onClick= {this.handleClick} >
<ZoomControl position="topright" />
<ScaleControl position="bottomright" />
<TileLayer
attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
url='http://{s}.tile.osm.org/{z}/{x}/{y}.png'
/>
<Marker map={this.refs.map} position={position} >
<Popup>
<span>A pretty CSS3 popup. <br /> Easily customizable.</span>
</Popup>
</Marker>
</Map>
)
}
}
In addMarker () I am trying to add a new marker. I try to do this in two ways:
AND)
var marker3 = L.marker([50.5, 30.5]).addTo(this.refs.map);
An error occurs:
Uncaught TypeError: map.addLayer is not a function
at NewClass.addTo (leaflet-src.js:3937)
at PointsMap.addMarker (Points.js?12f5:54)
AT)
const position2 = [50,30];
<Marker map={this.refs.map} position={position2} />
It does not add any new marker and does not cause any errors.
Do you have any idea how to add / remove markers dynamically?
source
share