I am using android here maps SDK, On long press, I will receive PointF (can be converted to geocoordinates) after that, I want to show in that long press location a bubble with the address of that location street name, Pincode, country something like that,
How can I achieve this?
@Override
public boolean onLongPressEvent(PointF pointF) {
if (null != mMap) {
// Converting pointF to GeoCoordinate
GeoCoordinate longPressPointGeoCoordinate = mMap.pixelToGeo(pointF);
showinfo();
}
}