Radar is the location platform for mobile apps.
Installation
Install the package from npm:
npm install --save capacitor-radar
Then, update dependencies:
npx cap sync
If successful, you will see:
✔ Updating Android plugins
Found 1 Capacitor plugin for android:
capacitor-radar
✔ update android
...
✔ Updating iOS plugins
Found 1 Capacitor plugin for ios:
capacitor-radar
✔ Updating iOS native dependencies with "pod install" (may take several minutes)
✔ update ios
On iOS, complete the steps in Configure project, then add the SDK to your project using CocoaPods. Initialize the SDK in application:didFinishLaunchingWithOptions:
in your AppDelegate
, passing in your Radar publishable API key:
import Capacitor
import RadarSDK
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
Radar.initialize(publishableKey: PUBLISHABLE_KEY)
return true
}
}
On Android, complete the steps in Configure project, then add the SDK to your project using Gradle. Initialize the SDK and the plugin in your MainActivity
, passing in your Radar publishable API key:
import io.radar.sdk.Radar;
import io.radar.capacitor.RadarPlugin;
public class MainActivity extends BridgeActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Radar.initialize(PUBLISHABLE_KEY);
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
add(RadarPlugin.class);
}});
}
}
To get a Radar publishable API key, sign up for a Radar account.
Usage
Import module
First, import the module:
import { Plugins } from '@capacitor/core';
import 'capacitor-radar';
const { RadarPlugin } = Plugins;
Initialize SDK
Initialize the SDK again in JavaScript:
RadarPlugin.initialize({ publishableKey });
where publishableKey
is a string containing your publishable API key.
Identify user
Until you identify the user, Radar will automatically identify the user by device ID.
To identify the user when logged in, call:
RadarPlugin.setUserId({ userId });
where userId
is a stable unique ID string for the user.
Do not send any PII, like names, email addresses, or publicly available IDs, for userId
. See privacy best practices for more information.
To set an optional dictionary of custom metadata for the user, call:
RadarPlugin.setMetadata({ metadata });
where metadata
is a JSON object 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:
RadarPlugin.setDescription({ description });
where description
is a string.
You only need to call these functions once, as these settings will be persisted across app sessions.
Request permissions
Before tracking the user's location, the user must have granted location permissions for the app.
To determine the whether user has granted location permissions for the app, call:
RadarPlugin.getPermissionsStatus().then((result) => {
});
result.status
will be a string, one of:
To request location permissions for the app, call:
RadarPlugin.requestPermissions({ background });
where background
is a boolean indicating whether to request background location permissions or foreground location permissions.
On Android and web, background
will be ignored.
Foreground tracking
Once you have initialized the SDK, you have identified the user, and the user has granted permissions, you can track the user's location.
To track the user's location in the foreground, call:
RadarPlugin.trackOnce().then((result) => {
}).catch((err) => {
});
err
will be a string, one of:
ERROR_PUBLISHABLE_KEY
: the SDK was not initializedERROR_PERMISSIONS
: the user has not granted location permissions for the appERROR_LOCATION
: location services were unavailable, or the location request timed outERROR_NETWORK
: the network was unavailable, or the network connection timed outERROR_UNAUTHORIZED
: the publishable API key is invalidERROR_SERVER
: an internal server error occurredERROR_UNKNOWN
: an unknown error occurred
Background tracking (iOS and Android only)
On iOS and Android, once you have initialized the SDK, you have identified the user, and the user has granted permissions, you can start tracking the user's location in the background.
To start tracking the user's location in the background, call:
RadarPlugin.startTracking();
Assuming you have configured your project properly, the SDK will wake up while the user is moving (usually every 3-5 minutes), then shut down when the user stops (usually within 5-10 minutes). To save battery, the SDK will not wake up when stopped, and the user must move at least 100 meters from a stop (sometimes more) to wake up the SDK. Note that location updates may be delayed significantly by iOS Low Power Mode, by Android Doze Mode and App Standby and Background Location Limits, or if the device has connectivity issues, low battery, or wi-fi disabled. These constraints apply to all uses of background location services on iOS and Android, not just Radar. See more about accuracy and reliability.
Optionally, you can configure advanced tracking options. See the iOS background tracking documentation and Android background tracking documentation for descriptions of these options.
RadarPlugin.startTracking({
priority: 'responsiveness',
sync: 'possibleStateChanges',
offline: 'replayStopped'
});
To stop tracking the user's location in the background (e.g., when the user logs out), call:
RadarPlugin.stopTracking();
You only need to call these methods once, as these settings will be persisted across app sessions.
On web, background tracking is not supported and these calls will be ignored.
Manual tracking
You can manually update the user's location by calling:
const latitude = 39.2904;
const longitude = -76.6122;
const accuracy = 65;
Radar.updateLocation({ latitude, longitude, accuracy }).then((result) => {
}).catch((err) => {
});