为什么用react-google-maps渲染一个Circle组件两次?

时间:2019-04-02 16:39:13

标签: reactjs render geometry react-google-maps react-16

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

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

以下是我尝试修复的一些方法: 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;

我的方法只需要绕一个圈。mycircles

1 个答案:

答案 0 :(得分:0)

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

相关问题