The question is: I’m given the coordinates in the center of the map, I’ll send these coordinates to the geocoder and get the address. I use the following code to get the center of the map, but the problem is that I get the coordinates even with minor changes, and thus exceeds the limit of requests. How do I get the coordinates when I removed my finger from the screen?
@Override public void onCameraChange(CameraPosition cameraPosition) { LatLng center = mMap.getCameraPosition().target; double latitude = center.latitude; double longitude = center.longitude;});