1
ReactでGoogleマップに問題があります。 すべてがうまくいっていますが、このマップの他の場所を再描画しようとすると、それはうまくいきません:( 私は都市を変更すると(例えば選択)新しい小道具(緯度、経度)が使用されますが、 lng
のためにあなたがlng
とlat
の状態を設定している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 no errors :) – Agata
よろしくお願いいたします。 ReactJSまたはGoogle /リーフレットのマップに関連するその他の問題については、私にpingをしてください! – thinhvo0108