Skip to main content
This is the documentation for the MAUI package. Before integrating, read the native SDK documentation to familiarize yourself with the platform.

Install

Install the package from NuGet:
RadarIO.Xamarin supports both Xamarin and MAUI bindings.
If you have an iOS and an Android project, add the package to each project.

Integrate

Initialize

First, initialize the SDK:

Identify user

To identify the user when logged in, call:
where userId is a stable unique ID for the user. To set an optional dictionary of custom metadata for the user, call:
where metadata is a JSONObject with up to 16 keys and values of type string, boolean, or number. Finally, to set an optional description for the user, displayed in the dashboard, call:
where description is a string. You only need to call these functions once, as these settings will be persisted across app sessions. Learn about platform-specific implementations of these functions in the iOS SDK documentation and Android SDK documentation.

Request permissions

Before tracking the user’s location, the user must have granted location permissions for the app. See the MAUI Permissions docs to learn how to check and request permissions.

Foreground tracking

Once you have initialized the SDK and the user has granted permissions, you can track the user’s location. To track the user’s location in the foreground, call:
Learn about platform-specific implementations of this function in the iOS SDK documentation and Android SDK documentation.

Background tracking

On iOS and Android, once you have initialized the SDK and the user has granted permissions, you can start tracking the user’s location in the background. For background tracking, the SDK supports custom tracking options as well as three presets:
  • TrackingOptionsEfficient: A low frequency of location updates and lowest battery usage. On Android, avoids Android vitals bad behavior thresholds.
  • TrackingOptionsResponsive: A medium frequency of location updates and low battery usage. Suitable for most consumer use cases.
  • TrackingOptionsContinuous: A high frequency of location updates and higher battery usage. Suitable for on-demand use cases (e.g., delivery tracking) and some consumer use cases (e.g., order ahead, “mall mode”).
Learn about platform-specific implementations of these presets in the iOS SDK documentation and Android SDK documentation. To start tracking the user’s location in the background, call one of:
You only need to call these methods once, as these settings will be persisted across app sessions. Though we recommend using presets for most use cases, you can customize the tracking options. See the tracking options reference.
To determine whether tracking has been started, call:
To stop tracking the user’s location in the background (e.g., when the user logs out), call:
Learn about platform-specific implementations of these functions in the iOS SDK documentation and Android SDK documentation. To listen for events, location updates, and errors, you can add event listeners:
Listeners should be set only once and before tracking begins.

Mock tracking

On iOS and Android, you can simulate a sequence of location updates for testing. For example, to simulate a sequence of 10 location updates every 3 seconds by car from an origin to a destination, we can call:

Trip tracking

On iOS and Android, to start a trip to a destination, call:
Later, to complete the trip and stop tracking, call:
Or, to cancel the trip and stop tracking, call:
Learn more about trip tracking.

Manual tracking

You can manually update the user’s location by calling:
Learn about platform-specific implementation of this function in the iOS SDK documentation and Android SDK documentation.

Other APIs

The MAUI SDK also exposes APIs for anonymous context, geocoding, search, and distance.

Get location

Get a single location update without sending it to the server:

Context

With the context API, get context for a location without sending device or user identifiers to the server:

Geocoding

With the forward geocoding API, geocode an address, converting address to coordinates:
With the reverse geocoding API, reverse geocode a location, converting coordinates to address:
With the IP geocoding API, geocode the device’s current IP address, converting IP address to city, state, and country:
With the autocomplete API, autocomplete partial addresses and place names, sorted by relevance:
With the geofence search API, search for geofences near a location, sorted by distance:
With the places search API, search for places near a location, sorted by distance:

Distance

With the distance API, calculate the travel distance and duration from an origin to a destination:

Matrix

With the matrix API, calculate the travel distances and durations between multiple origins and destinations for up to 25 routes:

Support

Have questions? We’re here to help! Contact us at radar.com/support.