Dav*_*ied 13 javascript fitbounds leaflet reactjs react-leaflet
我不知道如何在 Leaflet 地图上调用 fitBounds()。
如果我只是使用香草传单,这个解决方案将完美地工作:缩放以适应 Mapbox 或传单中的所有标记
不幸的是,我正在使用 react-leaflet。
如果我只是单独使用传单,这是解决方案。
var leafletMap = new L.featureGroup([marker1, marker2, marker3]);
map.fitBounds(leafletMap.getBounds());
Run Code Online (Sandbox Code Playgroud)
我认为这段代码(我的代码)this.mapRef.current.leafletElement
相当于var leafletMap = new L.featureGroup([marker1, marker2, marker3]); leafletMap.getBounds();
,但是什么map.fitBounds();
相当于 react-leaflet 中的?
基本上,我试图在地图上显示多个标记并相应地调整视图(放大、缩小、飞到等)。
这是我的代码。
import React, { createRef, Component } from 'react'
import { Map, TileLayer, Marker, Popup, FeatureGroup } from 'react-leaflet'
export default class MasterLeafletMap extends Component {
constructor(props) {
super(props);
this.markers = this.markers.bind(this);
this.handleClick = this.handleClick.bind(this);
this.mapRef = createRef()
}
handleClick() {
const leafletMap = this.mapRef.current.leafletElement;
this.mapRef.current.fitBounds(leafletMap.getBounds()); // Doesn't work
leafletMap.fitBounds(leafletMap.getBounds()); // Doesn't work (just trying to get the bounds of the markers that are there and adjust the view)
this.mapRef.current.leafletElement.flyToBounds(leafletMap.getBounds()); // Doesn't work
}
markers() {
if (this.props.search.items instanceof Array) {
return this.props.search.items.map(function(object, i) {
const position = [object._geoloc.lat, object._geoloc.lng];
return <Marker position={position}>
<Popup>
<span>
<h4>{object.title}</h4>
{object.address}, <br /> {object.city}, {object.state}, {object.zip} <br /> {object._geoloc.lat}, {object._geoloc.lng}
</span>
</Popup>
</Marker>
})
}
}
render() {
const hasLoaded = this.props.search.items instanceof Array;
if (!hasLoaded) {
return null;
}
const position = [this.props.search.items[0]._geoloc.lat, this.props.search.items[0]._geoloc.lng];
return (
<div className="leaflet-map-container">
<div onClick={this.handleClick}>Hello</div>
<Map center={position} zoom={13} ref={this.mapRef}>
<TileLayer
attribution="&copy <a href="http://osm.org/copyright">OpenStreetMap</a> contributors"
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
/>
<FeatureGroup>
{this.markers()}
</FeatureGroup>
</Map>
</div>
)
}
}
Run Code Online (Sandbox Code Playgroud)
提前致谢。
这是一个如何通过 react-leaflet
handleClick() {
const map = this.mapRef.current.leafletElement; //get native Map instance
const group = this.groupRef.current.leafletElement; //get native featureGroup instance
map.fitBounds(group.getBounds());
}
Run Code Online (Sandbox Code Playgroud)
在哪里
<div>
<button onClick={this.handleClick}>Zoom</button>
<Map
center={this.props.center}
zoom={this.props.zoom}
ref={this.mapRef}
>
<TileLayer
attribution='&copy <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
/>
<FeatureGroup ref={this.groupRef}>
{this.props.locations.map(location => (
<Marker
key={location.name}
position={{ lat: location.lat, lng: location.lng }}
>
<Popup>
<span>
<h4>{location.name}</h4>
</span>
</Popup>
</Marker>
))}
</FeatureGroup>
</Map>
</div>
Run Code Online (Sandbox Code Playgroud)
对应于
var leafletMap = new L.featureGroup([marker1, marker2, marker3]);
map.fitBounds(leafletMap.getBounds());
Run Code Online (Sandbox Code Playgroud)
如果您希望在地图加载时出现这种行为,您可以使用该onlayeradd
事件。
例子:
const fitToCustomLayer = () => {
if (mapRef.current && customAreaRef.current) { //we will get inside just once when loading
const map = mapRef.current.leafletElement
const layer = customAreaRef.current.leafletElement
map.fitBounds(layer.getBounds().pad(0.5))
}
}
return (
<Map ref={mapRef} onlayeradd={fitToCustomLayer}>
<LayersControl position="topright">
<Overlay checked key="customArea" name="Área de interesse">
<GeoJSON ref={customAreaRef} data={collection} style={geoJSONStyle} />
</Overlay>
<BaseLayer name="Open Street Map">
<TileLayer attribution='&copy <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"/>
</BaseLayer>
</LayersControl>
</Map>
)
Run Code Online (Sandbox Code Playgroud)
*编辑:如果参考层是最后一层,这似乎不起作用。将它放在基础层之前不会影响渲染并且可以工作。
如果您需要onlayeradd
出于正当目的使用 ,请确保添加另一个标志以避免进入if
并fitBounds
再次开火并丢失地图的当前位置。
ps:我试过onload
react-leaflet的方法,但是好像不行。
归档时间: |
|
查看次数: |
7615 次 |
最近记录: |