因此,当我单击标记时,地图总是刷新,如何防止它出现? 单击标记后,将呈现有关该标记的特定信息,但该标记始终会重新加载并返回其defaultCenter。
import React, { Component } from "react";
import { withGoogleMap, GoogleMap, Marker } from "react-google-maps";
import maplayout from "./mapstyle.js";
class Map extends Component {
state = { users: []};
onClick = (data) => {
this.props.onClick(data);
};
render() {
const GoogleMapExample = withGoogleMap(props => (
<GoogleMap
defaultCenter={{ lat: 47.507589, lng: 19.066128 }}
defaultZoom={13}
>
{this.props.users.map((element, index) => (
<Marker
key = {index}
icon={require("../assets/seenpinkek.svg")}
position={{ lat: element.latitude, lng: element.longitude }}
onClick={() => this.onClick(index)}
/>
))}
</GoogleMap>
));
return (
<div>
<GoogleMapExample
containerElement={<div className="mapCont" />}
mapElement={<div className="map" />}
disableDefaultUI={true}
isMarkerShown
onClick={this.onClick}>
</GoogleMapExample>
</div>
);
}
}
export default Map;
答案 0 :(得分:1)
这是预期的行为,因为父组件状态正在更新。为了防止您的地图组件重新呈现,您可以让React知道(通过shouldComponentUpdate
方法)组件是否应该受到状态或道具的改变的影响:
shouldComponentUpdate(nextProps) {
// If shouldComponentUpdate returns false,
// then render() will be completely skipped until the next state change.
// In addition, componentWillUpdate and componentDidUpdate will not be called.
return false;
}
或(允许在实际更改数据时进行更新):
shouldComponentUpdate(nextProps,nextState) {
return (this.state.users !== nextState.users);
}
已报告类似的解决方案问题here