Class Geofence
Metadata for geofencing support that allows tracking user location in the background while the app is inactive.
The sample below tracks location and posts a notification or shows a dialog based on the state of the app:
// File: GeofenceListenerImpl.java
public class GeofenceListenerImpl implements GeofenceListener {
@Override
public void onExit(String id) {
}
@Override
public void onEntered(String id) {
if(!Display.getInstance().isMinimized()) {
Display.getInstance().callSerially(() -> {
Dialog.show("Welcome", "Thanks for arriving", "OK", null);
});
} else {
LocalNotification ln = new LocalNotification();
ln.setId("LnMessage");
ln.setAlertTitle("Welcome");
ln.setAlertBody("Thanks for arriving!");
Display.getInstance().scheduleLocalNotification(ln, System.currentTimeMillis() + 10, LocalNotification.REPEAT_NONE);
}
}
}
// File: GeofenceSample.java
Geofence gf = new Geofence("test", loc, 100, 100000);
LocationManager.getLocationManager().addGeoFencing(GeofenceListenerImpl.class, gf);
NOTE: For iOS you must include the ios.background_modes build hint with a value that includes "location" for geofencing to work.
Geofencing is not supported on all platforms, use LocationManager#isGeofenceSupported() to find out if the current
platform supports it at runtime.
The maximum number of simulataneous Geofences allowed will vary by platform. iOS currently has a maximum of 20, and Android has a maximum of 100. If you need to
track more than 20 at a time, consider using the GeofenceManager class to manage your Geofences, as it will allow you to
effectively track an unlimited number of regions.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Comparator<Geofence> createDistanceComparator(Geofence refRegion) Creates a comparator for sorting Geofences from the current Geofence.static Comparator<Geofence> createDistanceComparator(Location refPoint) Creates a comparator for sorting Geofences from the given reference point.booleanGeofences are equal if their id, radius, and expiration are the same, and the location latitude and longitude are the same.doubleGets the distance between the current region and the given region.longGets the expiration duration (from now) of the Geofence in milliseconds.getId()Gets the Geofence ID.getLoc()Gets the location of the Geofence.intGets the radius of the geofence in metres.inthashCode()
-
Constructor Details
-
Geofence
Constructor
Parameters
-
id: unique identifier -
loc: the center location of this Geofence -
radius: @param radius the radius in meters. Note that the actual radius will vary on an actual device depending on the hardware and OS. Typical android and iOS devices have a minimum radius of 100m. -
expiration: the expiration time in milliseconds. Note that this is a duration, not a timestamp. Use -1 to never expire.
-
-
-
Method Details
-
createDistanceComparator
Creates a comparator for sorting Geofences from the current Geofence. -
createDistanceComparator
Creates a comparator for sorting Geofences from the given reference point. -
getId
Gets the Geofence ID.
Returns
the id
-
getLoc
Gets the location of the Geofence.
Returns
the center Location
-
getExpiration
public long getExpiration()Gets the expiration duration (from now) of the Geofence in milliseconds.
Returns
the Geofence expiration
-
getRadius
public int getRadius()Gets the radius of the geofence in metres. Note that the actual radius will vary on an actual device depending on the hardware and OS. Typical android and iOS devices have a minimum radius of 100m.
Returns
Geofence radius
-
getDistanceTo
Gets the distance between the current region and the given region.
Parameters
gf
-
equals
-
hashCode
-