com.mapsted.positioning.CoreApi.Geofences |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract boolean |
addGeofence(int propertyId, CppGeofenceTrigger geofence)
Add geofence trigger
| ||||||||||
abstract boolean |
addGeofences(int propertyId, CppGeofenceTriggers geofences)
Add a collection of geofence triggers
| ||||||||||
abstract boolean |
removeAllGeofences(int propertyId)
Remove all geofence triggers for the supplied property
| ||||||||||
abstract boolean |
removeGeofence(int propertyId, String geofenceId)
Remove a specific geofence
| ||||||||||
abstract boolean |
setGeofenceCallback(GeofenceCallback callback)
Register geofence callback.
|
Add geofence trigger
propertyId | property to be added |
---|---|
geofence | geofence to be added |
Add a collection of geofence triggers
propertyId | property to be added |
---|---|
geofences | geofences to be added |
Remove all geofence triggers for the supplied property
propertyId | the property for which to remove all geofence triggers |
---|
Remove a specific geofence
propertyId | property of the geofence |
---|---|
geofenceId | geofence to be removed |
Register geofence callback. This is intended for use by a manager class.
callback | GeofenceCallback (Manager class) |
---|