Android Question Detectm touch map

devmobile

Active Member
Licensed User
I need to handle touch event for googlemap
Actually detect down and up touch
I want to get touch event only please
 

Computersmith64

Well-Known Member
Licensed User
Longtime User
I don't think the touch down & up callbacks are implemented in the MapFragment SDK. In B4A you can use the Click event:

B4X:
Sub MapFragment_Click (Point As LatLng)
   
End Sub

If that's not what you want, I have seen suggestions on stackoverflow to use an overlay to get the touch events. Perhaps a panel?

- Colin.
 
Upvote 0

devmobile

Active Member
Licensed User
I don't think the touch down & up callbacks are implemented in the MapFragment SDK. In B4A you can use the Click event:

B4X:
Sub MapFragment_Click (Point As LatLng)
  
End Sub

If that's not what you want, I have seen suggestions on stackoverflow to use an overlay to get the touch events. Perhaps a panel?

- Colin.
Yes click event is looklike touch
But i need up event too
 
Upvote 0
Top