我正在尝试使用库 react-leaflet 做一个简单的 Web 应用程序。
我有以下代码:
import React from 'react';
import { Map, Marker, Popup, TileLayer } from 'react-leaflet';
class LeafletMap extends React.Component {
constructor() {
super();
this.state = {
lat: 51.505,
lng: -0.09,
zoom: 13,
};
}
render() {
const position = [this.state.lat, this.state.lng];
return (
<Map center={position} zoom={this.state.zoom}>
<TileLayer
url='http://{s}.tile.osm.org/{z}/{x}/{y}.png'
/>
<Marker position={position}>
<Popup>
<span>A pretty CSS3 popup. <br/> Easily customizable.</span>
</Popup>
</Marker>
</Map>
);
}
}
export default LeafletMap;
但是,TileLayer 始终以随机顺序显示。我已经阅读了很多它必须与ComponentDidMount()
by一起使用的代码Reactjs
,但是与库相比,我看到的渲染完全不同。
你知道我能做什么吗?