1
我在React中的Google地圖存在問題。 一切正常,但是,當我嘗試重新呈現其他地方在這張地圖它不起作用:( 我的意思是當我改變城市(例如選擇)使用新的道具(經度,緯度),但城市之一地圖不是改變React - Google地圖組件在重新渲染後沒有更改地圖
import React from 'react';
import ReactDOM from 'react-dom';
import { withGoogleMap, GoogleMap, Marker } from "react-google-maps";
const SimpleMapExampleGoogleMap = withGoogleMap(props => {
console.log("here new props are used", props)
return <GoogleMap
defaultZoom={15}
defaultCenter={new google.maps.LatLng(props.lat, props.lng)}
/>
}
);
class GMap extends React.Component{
constructor(props) {
super(props);
this.state = {
lat: this.props.lat,
lng: this.props.lng
}
}
render() {
console.log("New props ", this.props)
return <SimpleMapExampleGoogleMap
lat={this.props.lat}
lng={this.props.lng}
containerElement={
<div style={{ height: `500px` }} />
}
mapElement={
<div style={{ height: `500px` }} />
}
/>
}
}
export { GMap }
非常感謝你* 100 :)它的工作原理, Omg我沒有想到componentWillReceiveProps 你讓我的一天:) PS沒有錯誤:) – Agata
不客氣,很高興你讓它工作^^!有關ReactJS或Google/Leaflet地圖的更多問題,請隨時與我聯繫! – thinhvo0108