首页 > 解决方案 > 为什么 react-google-maps 渲染一个 Circle 组件两次?

问题描述

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

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

这是我尝试修复它的一些方法:1)仅与GoogleMap一起使用,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;

我的方法只需要一个圆圈。我的圈子

标签: reactjsrendergeometryreact-google-mapsreact-16

解决方案


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


推荐阅读