【问题标题】:Why react-google-maps rendering one Circle component twice?为什么 react-google-maps 渲染一个 Circle 组件两次?
【发布时间】:2019-04-02 16:39:13
【问题描述】:

当我将 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;

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

【问题讨论】:

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


    【解决方案1】:

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

    【讨论】:

      猜你喜欢
      • 2017-11-22
      • 2020-11-22
      • 2020-09-07
      • 1970-01-01
      • 2020-03-17
      • 2021-10-21
      • 1970-01-01
      • 2019-05-26
      相关资源
      最近更新 更多