containerPointToLatLng
- это метод Map
класса , в приведенном ниже примере показано, как разместить маркер, если заданы пиксельные координаты
class MapExample extends React.Component {
constructor(props) {
super();
this.state = {
lat: 51.505,
lng: -0.09,
zoom: 8,
markerPoint: {
x: 733,
y: 62
}
};
this.refMap = React.createRef();
this.setMarkerPos = marker => {
const map = this.refMap.current.leafletElement;
const m = marker.leafletElement;
const markerLatLng = map.containerPointToLatLng(this.state.markerPoint);
m.setLatLng(markerLatLng);
};
}
render() {
const { lat, lng, zoom } = this.state;
const position = [lat, lng];
return (
<Map ref={this.refMap}
center={position} zoom={zoom}
>
<TileLayer
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
attribution="© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors"
/>
<Marker position={{lat:0,lng:0}} ref={this.setMarkerPos.bind(this)} />
</Map>
);
}
}
Вот демоверсия для вашей справки