public class Geofence
- Object
- 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.
Constructors
public Geofence(String id, Location loc, int radius, long expiration) | Constructor |
Methods
public static Comparator<Geofence> createDistanceComparator(Geofence refRegion) | Creates a comparator for sorting Geofences from the current Geofence. |
public static Comparator<Geofence> createDistanceComparator(Location refPoint) | Creates a comparator for sorting Geofences from the given reference point. |
public String getId() | Gets the Geofence ID. |
public Location getLoc() | Gets the location of the Geofence. |
public long getExpiration() | Gets the expiration duration (from now) of the Geofence in milliseconds. |
public int getRadius() | Gets the radius of the geofence in metres. |
public double getDistanceTo(Geofence gf) | Gets the distance between the current region and the given region. |
public boolean equals(Object o) | Geofences are equal if their id, radius, and expiration are the same, and the location latitude and longitude are the same. |
public int hashCode() | Returns a hash code value for the object. |
Inherited methods
Constructor details
Geofence
public Geofence(String id, Location loc, int radius, long expiration)Parameters
idString- unique identifier
locLocation- the center location of this Geofence
radiusint- 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.
expirationlong- the expiration time in milliseconds. Note that this is a duration, not a timestamp. Use -1 to never expire.
Method details
createDistanceComparator
public static Comparator<Geofence> createDistanceComparator(Geofence refRegion)createDistanceComparator
public static Comparator<Geofence> createDistanceComparator(Location refPoint)getId
public String getId()Returns
getLoc
public Location getLoc()Returns
getExpiration
public long getExpiration()Returns
getRadius
public int getRadius()Returns
getDistanceTo
public double getDistanceTo(Geofence gf)equals
public boolean equals(Object o)hashCode
public int hashCode()