我有谷歌地图与集群的多个标记。在标记点击时,我显示信息窗口,但是当我点击标记时,整个地图标记和集群都被重新渲染,这使得页面缓慢而烦人。
以下是我的代码:
import React, { Component } from "react";
import axios from "axios";
import { compose, withProps, withHandlers, withStateHandlers } from "recompose";
import {
withScriptjs,
withGoogleMap,
GoogleMap,
Marker,
InfoWindow
} from "react-google-maps";
const {
MarkerClusterer
} = require("react-google-maps/lib/components/addons/MarkerClusterer");
const MapWithAMarkerClusterer = compose(
withProps({
googleMapURL:
"https://maps.googleapis.com/maps/api/js?key=API&v=3.exp&libraries=geometry,drawing,places",
loadingElement: <div style={{ height: `100%` }} />,
containerElement: <div style={{ height: `90vh` }} />,
mapElement: <div style={{ height: `100%` }} />
}),
withStateHandlers(
{ InfoWindowobject: null },
{
setInfoWindow: () => value => ({ InfoWindowobject: value })
}
),
withStateHandlers(
{ isOpen: false },
{
onToggleOpen: ({ isOpen }) => () => ({
isOpen: !isOpen
})
}
),
withHandlers({
onMarkerClustererClick: () => markerClusterer => {
const clickedMarkers = markerClusterer.getMarkers();
},
onMarkerClick: props => markerss => {
const { setInfoWindow, onToggleOpen } = props;
axios({
url: "API",
method: "POST",
}).then(res => {
setInfoWindow(res.data);
onToggleOpen();
});
}
}),
withScriptjs,
withGoogleMap
)(props => (
<GoogleMap
defaultZoom={5}
defaultCenter={{ lat: 22.845625996700075, lng: 78.9629 }}
>
<MarkerClusterer
onClick={props.onMarkerClustererClick}
minimumClusterSize={10}
averageCenter
styles={[
{
textColor: "white",
url: imgmapcluster,
height: 68,
lineHeight: 3,
width: 70
}
]}
enableRetinaIcons
gridSize={60}
>
{props.markers.map((marker, index) => (
<Marker
key={index}
icon={user}
onClick={props.onMarkerClick.bind(props, marker)}
position={{ lat: marker.latitude, lng: marker.longitude }}
/>
))}
{props.isOpen && props.InfoWindowobject !== null && (
<InfoWindow
position={{
lat: props.InfoWindowobject.latitude,
lng: props.InfoWindowobject.longitude
}}
onCloseClick={props.onToggleOpen}
>
{props.InfoWindowobject !== null && (
<div className="infobox clearfix" style={{ fontFamily: "Gotham" }}>
<div className="header clearfix">
<h3>
{props.InfoWindowobject.name},{" "}
<small>{props.InfoWindowobject.contactNo}</small>
</h3>
</div>
</div>
)}
</InfoWindow>
)}
</MarkerClusterer>
</GoogleMap>
));
class DemoApp extends React.PureComponent {
componentWillMount() {
this.setState({ markers: [], isOpen: false, InfoWindowobject: {} });
}
componentDidMount() {
axios({
url: "API",
}).then(res => {
this.setState({ markers: res.data.data.list });
});
}
render() {
return (
<MapWithAMarkerClusterer
markers={this.state.markers}
isOpen={this.state.isOpen}
InfoWindowobject={this.state.InfoWindowobject}
/>
);
}
}
参考:https://tomchentw.github.io/react-google-maps/#markerclusterer
这是预期的行为,因为每次状态更改时都会发生重新渲染。为了防止重渲染,您可以考虑用<代码> > MuleCuulter < /Cult>组件,用“代码> BueDebug更新< /Cord>高阶组件,让反应知道组件是否受更改状态的影响,如下所示:
const MyMarkerClusterer = shouldUpdate(checkPropsChange)(props => {
const {onMarkerClick,markers,...clusterProps} = props;
return (
<MarkerClusterer
{...clusterProps}
>
{markers.map(marker => (
<Marker
key={marker.photo_id}
position={{ lat: marker.latitude, lng: marker.longitude }}
onClick={onMarkerClick.bind(this, marker)}
/>
))}
</MarkerClusterer>
);
});
在哪里
const checkPropsChange = (props, nextProps) => {
return nextProps.markers.length !== props.markers.length; //re-render only if markers prop changed
};
这是一个演示
我已经初始化了一个数组状态,当我更新它时,我的组件不会重新渲染。以下是一个最低限度的概念证明: 根据这段代码,似乎输入应该包含要开始的数字0,并且无论何时更改,状态也应该更改。在输入中输入“02”后,应用程序组件不会重新渲染。但是,如果我在5秒后执行的onChange函数中添加setTimeout,则表明数字确实已更新。 对为什么组件不更新有什么想法吗? 这是一个带有概念证明的代码沙盒。
我对react还比较陌生,我一直在分解一个web应用程序,并用react组件替换部分。我现在正在开发一个组件,其中包含我创建的几个不同组件。 在新组件中,我在componentDidMount函数中进行API调用,并创建子组件。乍一看,一切看起来都很完美,但当我们在其中一个子组件中进行状态更改,然后在父组件中进行更改时,子组件将其状态重置为更改之前的状态。 我知道发生了什么,州政府没有被传递给家长
当我在标记中单击时,警报消息是:未定义 但是如果我把它放在变量映射中,它就起作用了!(显示经纬度) 有人知道为什么它在标记器里不起作用吗?
我正在使用状态在图标的单击事件中打开和关闭一个层。当我从单击处理程序调用时,什么都没有发生。 以前,我直接从图标单击调用该方法,这确实打开了层,但如果由于不允许调用rednder()中的方法而冻结了用户界面。 所以我找到了一个解决方案,在调用打开之前添加一个lambda,如下所示。但是点击图标不会打开这个更改的图层: 为了进一步调试,我放置了一个控制台。登录方法,我可以看到它没有被点击图标。 问题
此代码正在运行 但是当我日志渲染状态显示是组件渲染两次 上滚动日志true两次 向下滚动log false两次 有什么解决办法吗??
我遇到了这个简单的React函数组件,它渲染四次,而我希望它最初渲染一次,执行useffect更新状态,然后再次渲染。相反,控制台发送4个日志输出,表示它渲染了4次。了解react功能组件的基本生命周期的原因和资源吗? https://codesandbox.io/s/solitary-tree-t120d?file=/src/App.js:149-191