当我移动地图时,我有界限,但我不知道如何在这些边界中包含标记。我不想使用new google.map...
。我想继续使用React-Google-Map
。如果那是不可能的,那么我将使用谷歌实例。
我将在下面发布我的代码。我正在控制台注销参考谷歌地图和onChange
功能内的道具。
Props =>
bounds:{nw: {…}, se: {…}, sw: {…}, ne: {…}}
center:{lat: 53, lng: -7.77000000000001}
marginBounds:{nw: {…}, se: {…}, sw: {…}, ne: {…}}
size:{width: 1818, height: 455}
zoom:10
__proto__:Object
Map Ref => GoogleMap {props: {…}, context: {…}, refs: {…}, updater: {…}, _getMinZoom: ƒ, …}
import React, { Component } from 'react';
import GoogleMap from 'google-map-react';
function findMarkerIndex(id, markers) {
for (let i = markers.length; i--; ) {
if (markers[i].id === id) {
return i;
}
}
return null;
}
export default class Map extends Component {
constructor(props) {
super(props);
this.createMapOptions = this.createMapOptions.bind(this);
this.changeMap = this.changeMap.bind(this);
this.toggleMarker = this.toggleMarker.bind(this);
this.state = {
markers: []
};
}
changeMap(props) {
console.log(props);
console.log(this.map);
}
toggleMarker(id) {
const index = findMarkerIndex(id, this.state.markers);
if (index !== null) {
const markers = this.state.markers;
markers[index].show = !markers[index].show;
this.setState({ markers });
}
}
closeMarker(id) {
const index = findMarkerIndex(id, this.state.markers);
if (index !== null) {
const markers = this.state.markers;
markers[index].show = false;
this.setState({ markers });
}
}
createMapOptions(maps) {
return {
styles: this.props.styles
};
}
componentDidMount() {
this.setState({ markers: this.props.markers });
}
render() {
const Marker = this.props.markerComponent;
const markers = (this.state.markers || []).map(marker => (
<Marker
key={marker.id}
handleMarkerClick={this.toggleMarker}
handleMarkerClose={this.closeMarker}
{...marker}
/>
));
return (
<div
style={{
height: this.props.height || '800px',
width: this.props.width || '100%'
}}
>
<GoogleMap
ref={ref => {
this.map = ref;
}}
center={this.props.center || { lat: 50, lng: 25 }}
zoom={this.props.zoom || 8}
options={this.createMapOptions || {}}
onChange={this.changeMap}
>
{markers}
</GoogleMap>
</div>
);
}
}
答案 0 :(得分:3)
当您控制放入地图的标记(this.state.markers
)时,您只需使用您拥有的边界对它们运行.filter()
。
const { markers } = this.state;
if (markers) {
const foundMarkers = markers.filter(marker => {
if (
marker.lat > se.lat &&
sw.lat &&
(marker.lat < ne.lat && nw.lat) &&
(marker.lng > nw.lng && sw.lng) &&
(marker.lng < ne.lng && se.lng)
) {
return marker;
}
});
console.log(foundMarkers);
}
答案 1 :(得分:2)
不确定这是否是最好的&#34;但是,我只是使用onChange
方法中的边界来攻击这一点。
我抓住每个界限并将它们与我的标记进行比较。我会发布我所做的,似乎工作得很好。如果它有缺陷请告诉我!
changeMap(props) {
const {
bounds: { ne, nw, se, sw }
} = props;
// east for lng will be greater
// north for lat will be greater
const { markers } = this.state;
if (markers) {
markers.map(marker => {
if (
marker.lat > se.lat &&
sw.lat &&
(marker.lat < ne.lat && nw.lat) &&
(marker.lng > nw.lng && sw.lng) &&
(marker.lng < ne.lng && se.lng)
) {
console.log(marker);
}
});
}
}
答案 2 :(得分:0)
使用Es6,您可以通过将变量传递给changeMap函数来获得边界和其他地图选项:
changeMap = ({ center, zoom, bounds }) => {
console.log(bounds );
};