Before doing this, did you:
_You can get someone's help in three ways_:
Please, be noted, no one, I mean, no one, is obligated to help you in ANY means. Your time is valuable, so does our contributors. Don't waste our time posting questions like “how do I do X with React-Google-Maps” and “my code doesn't work”. This is not the primary purpose of the issue tracker. Don't abuse.
How to get latitude and longitude of a place on click in map
@shameersam You can get lat, lng by add onClick to props in GoogleMap
<GoogleMap onClick={this.handleClickedMap } />
handleClickedMap = (e) => {
let latitude = e.latLng.lat()
let longtitude = e.latLng.lat()
console.log(lat, lng)
}
I hope it useful.
Most helpful comment
@shameersam You can get lat, lng by add onClick to props in GoogleMap
I hope it useful.