我正在使用react-leaflet向地图添加一组标记。目前我可以使用自定义图标在地图上显示标记。如何向每个标记添加数据记录。我想我必须以某种方式创建一个自定义标记类?现在有人知道我如何向每个标记或至少一个索引添加数据记录吗?
这是到目前为止的代码:
import React, { Component } from 'react';
import { Map, TileLayer, Marker } from 'react-leaflet';
import {Navbar, Nav, NavDropdown} from 'react-bootstrap';
import L from 'leaflet';
import './App.css';
class App extends Component {
constructor(props) {
super(props);
this.state = {
location: {
lat: -41.2728,
lng: 173.2995,
},
zoom: 8,
markersData: [],
fault: {},
layers: [],
bounds: {},
icon: null
}
}
componentDidMount() {
// Call our fetch function below once the component mounts
this.callBackendAPI()
.catch(err => console.log(err));
}
componentDidUpdate() {
//let marker = CustomMarker();
}
callBackendAPI = async () => {
const response = await fetch('http://localhost:5000/api')
const body = await response.json();
console.log(body.express)
if (response.status !== 200) {
throw Error(body.message)
}
return body;
};
addMarkers(data) {
let markersData = [];
let table = [];
for (var i = 0; i < data.length; i++) {
const id = data[i].gid
const fault = data[i].fault
let record = {id: id, fault: fault};
table.push(record);
const position = JSON.parse(data[i].st_asgeojson);
const lng = position.coordinates[0];
const lat = position.coordinates[1];
let latlng = L.latLng(lat, lng);
markersData.push(latlng);
}
this.setState({markersData: markersData});
this.setState({fault: table});
console.log(this.state.markersData[0])
console.log(this.state.fault)
}
/**
* fires when user scrolls mousewheel
* param - e the mouse event
**/
onZoom(e) {
this.setState({zoom: e.target.getZoom()});
this.setState({bounds: e.target.getBounds()});
}
clickMarker(e) {
var marker = e.target;
console.log(marker.getLatLng());
}
getIcon(zoom) {
let icon = null;
if (zoom <= 10) {
icon = L.icon({
iconUrl: 'CameraRed_4px.png',
iconSize: [4, 4],
iconAnchor: [2, 2],
});
} else {
icon = L.icon({
iconUrl: 'CameraRed_8px.png',
iconSize: [8, 8],
iconAnchor: [4, 4],
});
}
return icon
}
async loadLayer(e) {
const response = await fetch('http://localhost:5000/layer', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
latitude: this.state.location.lat,
longitude: this.state.location.lng,
menu: e.target.id
})
})
if (response.status !== 200) {
throw Error(body.message)
}
const body = await response.json();
await this.addMarkers(body);
};
customMarker = L.Marker.extend({
options: {
id: null,
type: ''
}
});
render() {
//console.log("render");
const position = [this.state.location.lat, this.state.location.lng];
const { markersData } = this.state.markersData;
console.log(this.state.zoom);
let icon = this.getIcon(this.state.zoom);
this.state.icon = icon;
return (
<>
<div>
<Navbar bg="light" expand="lg">
<Navbar.Brand href="#home">
</Navbar.Brand>
<Nav>
<NavDropdown title="Layers" id="basic-nav-dropdown">
<NavDropdown.Item id="AddLayer" href="#addlayer" onClick={(e) => this.loadLayer(e)}
>Add Layer
</NavDropdown.Item>
<NavDropdown.Divider />
<NavDropdown.Item href="#action/3.4">Separated link</NavDropdown.Item>
</NavDropdown>
</Nav>
<Nav className="ml-auto">
<Nav.Link href="#login">Login</Nav.Link>
</Nav>
</Navbar>
</div>
<div className="map">
<Map
ref={(ref) => { this.map = ref; }}
className="map"
markersData={markersData}
worldCopyJump={true}
center={position}
zoom={this.state.zoom}
onZoom={(e) => this.onZoom(e)}>
<TileLayer
attribution="&copy <a href="http://osm.org/copyright">OpenStreetMap</a> contributors and Chat location by Iconika from the Noun Project"
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
/>
{this.state.markersData.map((position, index) =>
<Marker key={index} position={position} icon={this.state.icon} draggable={false} onClick={(e) => this.clickMarker(e)}>
</Marker>
)}
</Map>
</>
);
}
}
export default App;
编辑:
原始问题标题:扩展react-leaflet标记以创建自定义标记。
单击时,传递给
Marker
的所有道具都将在 e.target.options
中可用。
{this.state.markersData.map((position, index) => (
<Marker
key={index}
data={position} // <-- get this value in onClick handler
position={position}
icon={this.state.icon}
draggable={false}
onClick={e => this.clickMarker(e)}
></Marker>
))}
clickMarker(e) {
var marker = e.target;
console.log(marker.options.data); // logs position.
}
这个答案适用于任何使用较新版本的 Leaflet 但仍在苦苦挣扎的人。
onClick
在react-leaflet v3中不再起作用。 useMapEvent(s)
适用于地图实例,不适用于 Marker
等 UI 组件。要在标记上注册事件处理程序,您需要使用 eventHandlers
属性:
{this.state.markersData.map((position, index) => (
<Marker
key={index}
position={position}
icon={this.state.icon}
draggable={false}
eventHandlers={{ click: () => this.clickMarker(position) }} // also, you can pass your data as a parameter to your clickMarker function
></Marker>
))}