I've encountered this problem with the latest Android Geofence API. The usage is exact to the example usage. I set Geofence.GEOFENCE_TRANSITION_ENTER
type geofence with 500m radius and expiration is Geofence.NEVER_EXPIRE
. This works ok, but if I'm about 10 meters to latitude longitude and I set the geofence, it triggers immediately.
So am I understanding the term Geofence.GEOFENCE_TRANSITION_ENTER
wrong here, shouldn't it trigger only when we are outside the zone and enter it, not when we are already in the zone?
Thanks.