为什么要对一个 Circle 组件进行两次 react-google-maps 渲染



当我将react-google-maps添加到项目中时,渲染工作了两次。所以我有 2 个圆圈一个在另一个下面。另外,我通过onDragEnd((方法显示中心坐标。此事件仅适用于其中一个圈子。

任何其他谷歌地图都不存在在项目中。

以下是我尝试修复它的一些方法:1(仅与谷歌地图一起使用,2( 在父组件的 render(( 方法中使用 GoogleMapsWrapper 组件,3( 使用 componentDidMount((;尝试从Satckoverflow:)的所有内容没有任何帮助。

import React, { Component } from 'react';
import MapForm from './mapForm';
import { GoogleMap, withGoogleMap, withScriptjs, Circle } from 'react-google-maps';
const GoogleMapsWrapper = withScriptjs(withGoogleMap(props => {
    const {onMapMounted, ...otherProps} = props;
    return <GoogleMap {...otherProps} ref={c => {
       onMapMounted && onMapMounted(c)
    }}>{props.children}</GoogleMap>
}));
class GoogleMapsContainer extends Component {
    state = {
        coords: {lat:0, lng: 0}
    };

dragCircle = () => {
    this.setState({
        coords: {
            lat: this._circle.getCenter().lat(),
            lng: this._circle.getCenter().lng()
        }
    })
}
render() {
    return(
        <div style={{display: 'flex',flexDirection: 'row', width: '100%', marginLeft: '37px'}}>
        <MapForm 
            filters={this.props.filters}
            coords={this.state.coords}  
        />
        <GoogleMapsWrapper
            googleMapURL={`https://maps.googleapis.com/maps/api/js?key=${KEY}&v=3.exp&libraries=geometry,drawing,places`}
            loadingElement={<div style={{height: `100%`}}/>}
            containerElement={<div style={{position: 'relative',width: '100%',  }} />}
            mapElement={<div style={{height: `100%`}}/>}
            defaultZoom={13}
            defaultCenter={KYIV}
        >
            <Circle
                ref={(circle) => {this._circle = circle}}
                defaultCenter = {KYIV}
                defaultDraggable={true}
                defaultEditable={true}
                defaultRadius={2000}
                onDragEnd = {this.dragCircle}
                options={{
                    strokeColor: `${colors.vividblue}`,
                    fillColor: `${colors.vividblue}`,
                    fillOpacity: 0.1
                }}
            />
      </GoogleMapsWrapper>
      </div>
    )
  }
}
export default GoogleMapsContainer;

只需要一个圆圈与我的方法.mycircles

好的,问题出在项目中的 React StrictMode 组件中。

最新更新