我想:如何調用函數getCenter()和其他反應 - 谷歌 - 地圖
<GoogleMap
defaultZoom={14}
center={{lat: props.mapCenter.lat, lng: props.mapCenter.lng}}
onCenterChanged={getCenter()}
/>
更新:我使用的是Stateless Functional Component
:
const MarkerClustererExampleGoogleMap = withGoogleMap(props => (
<GoogleMap
defaultZoom={14}
center={{lat: props.mapCenter.lat, lng: props.mapCenter.lng}}
onCenterChanged={getCenter()}
>
)
但我得到的錯誤:
getCenter is undefined.
如何解決此問題,謝謝。
哦,我可以用喜歡你的決心,但我有無國籍的組成部分。而我的變量「this」沒有定義。我用部件使用GoogleMap不變量 「這個」 '常量MarkerClustererExampleGoogleMap = withGoogleMap(道具=>( –
@ cm-brain檢查更新後的答案,如何在無狀態功能組件中定義函數,寫入方式與其工作方式相同。 –