The Nikaza Places database has millions of pre-defined locations that are categorized based on the location type which can be subscribed to.
Each place has a category, sub-category and location name. Example: Arts & Entertainment, Movie Theatre, Acme Cinema.
- Integrate the latest version of the Nikaza Location Services Framework into your app to know when a user visits a place.
- Subscribe to location categories or location names using tags
- Listen to entry and exit events via following callbacks
didEnter_place()
didExit_place()
Learn more about SDK implementation. Nikaza supports thousands of Tags. View the full list of Tags.
For example, to get a callback when user has entered into a geofence or exited from a geofence, use Places.
@Override
public void didEnter_place(PlacesResponse oPlacesResponse) {
//User is at this place
}
@Override
public void didExit_place(GeofenceTriggerData oGeofenceTriggerData) {
//User exited this place
}
Questions? We're here to help.
Email us at [email protected] and we’ll help you sort it out.