Developers
The mParticle SDK allows you to track the location of your users. When you are tracking location, the SDK will include a location
node as part of each event uploaded by the SDK. The location
node converts data from iOS, Android or Web into a single standard and has three properties:
50
means the device is within 50 meters of the specified latitude and longitude.This location data serves two main purposes
For each batch of event data received from the SDK, mParticle extracts location data from the first event with a non-null location, performs a reverse geo-lookup and adds the following metadata to the batch:
New York, New York
, Madison, Wisconsin
If you have not logged location information, mParticle will still attempt a reverse geo-lookup based on the IP Address of the batch. The last 30 days of location information are available in Audiences and can be used to define audiences.
There are two ways to approach location tracking:
enableLocationTracking
method and let the mParticle SDK collect and update location information for you. Remember to call disableLocationTracking
when you no longer need to track locationlocation
property directly. In this case you are responsible for maintaining location
updated and setting it to nil/null
when no longer needed// Specify a provider and minimum time (milliseconds) and minimum distance (meters) between location updates.
MParticle.getInstance().enableLocationTracking(LocationManager.NETWORK_PROVIDER, 30*1000, 1000);
//alternatively, an application can manage it's own location updates
//and manually set an android.location.Location object
MParticle.getInstance().setLocation(someLocation);
See the Android developer guidelines for more info on available providers and the permissions that are required.
Was this page helpful?