Called when the user makes a tap gesture on the map, but only if none of the
overlays of the map handled the gesture. Implementations of this method are always
invoked on the Android UI thread.
Parameters
point
The point on the ground (projected from the screen point) that was tapped.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["The `GoogleMap.OnMapClickListener` interface provides a callback for map tap events. The `onMapClick(LatLng point)` method is invoked when a user taps the map, provided no map overlays have handled the gesture. This method, which runs on the Android UI thread, receives the `LatLng` coordinates of the tapped location. This interface allows developers to respond to user taps and determine the specific geographic location interacted with.\n"]]