在react-google-maps中动态添加,更新,删除标记

时间:2018-12-21 22:11:01

标签: google-maps-api-3 react-google-maps

通过查看有关react-google-maps的文档,我能够破解一些代码以呈现带有静态数据的地图。现在,我需要根据来自API或定期更新的新数据对地图进行更改,并且看不到有关如何执行此操作的任何讨论。

要制作初始应用程序,我做了一个“ npx create-react-app xxx”来创建一个应用程序,然后为react-google-maps添加了必要的npm包。这是基本代码:

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import * as serviceWorker from './serviceWorker';
import { withScriptjs, withGoogleMap, GoogleMap, Marker } from "react-google-maps"


let markers = []

function createMarkers(numMarkers){

    for(let i = 0; i < numMarkers; i++){
        markers.push(<Marker key={i} position={{ lat: 45.123 + (i * 0.005), lng: -75.987 }} />)
    }

    return markers;
}

setInterval(function(){ 
  if(markers.length > 0 && markers[0].props.position){
    let marker = markers[0];
    //debugger;
    let position = marker.props.position;
    position.lat = position.lat - 0.005;
    position.lng = position.lng - 0.005;
    marker.props.position = position;
  }
}, 1000)

const MyGreatMap = withScriptjs( withGoogleMap(props => <GoogleMap
      defaultZoom={14}
      defaultCenter={{ lat: 45.123, lng: -75.978 }}
    >
      {createMarkers(10)}
    </GoogleMap>));


ReactDOM.render(
  <MyGreatMap 
    googleMapURL="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry,drawing,places&key=AIzaSyDS-TFZqRfUx9xPXTJrPH6eml-gGo-btZ0"
    loadingElement={<div style={{ height: `100%` }} />}
    containerElement={<div style={{ height: `800px` }} />}
    mapElement={<div style={{ height: `100%` }} />}
  />, 
  document.getElementById('root'));

当我更新道具时,什么也没发生。我确定这是错误的,应该以某种方式更新状态,但是标记中的经/纬度信息是道具。

更新react-google-maps中内容的最佳方法是什么?谷歌地图通常是一个非常JavaScript密集型的API,所以我不知道它是否可以“反应方式”。更改对react-google-maps进行更改以使其有效地重新呈现的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

  

我确定这是错误的,应该以某种方式更新状态,但是   标记中的经纬度信息均为道具。

是的,markers需要移动到local state,为此可以引入一个组件,该组件接受markers道具作为初始状态,然后声明像这样更新:

class MapWithMarkers extends React.Component {
  constructor(props) {
    super(props);
    this.state= {markers: this.props.markers};   //1.initialize initial state from props
  }

  updateMarker() {
      this.setState(prevState => {
        const markers = [...prevState.markers];
        markers[index] = {lat: <val>, lng: <val>};
        return {markers};
     })
  }

  componentDidMount() {
    this.intervalId = setInterval(this.updateMarker.bind(this), 1000);
  }
  componentWillUnmount(){
    clearInterval(this.intervalId);
  }

  render() {
    return (
      <Map center={this.props.center} zoom={this.props.zoom} places={this.state.places} />
    ); 
  }
}

Demo