@radarlabs/cordova-plugin-radar
Advanced tools
Comparing version 3.0.0 to 3.0.2
{ | ||
"name": "@radarlabs/cordova-plugin-radar", | ||
"description": "Cordova plugin for Radar, the location platform for mobile apps", | ||
"description": "Cordova plugin for Radar, location data infrastructure", | ||
"homepage": "https://www.radar.io", | ||
"license": "Apache-2.0", | ||
"version": "3.0.0", | ||
"version": "3.0.2", | ||
"main": "www/Radar.js", | ||
@@ -8,0 +8,0 @@ "devDependencies": { |
@@ -58,2 +58,6 @@ const cordova = require('cordova'); | ||
const mockTracking = (options, callback) => { | ||
exec('mockTracking', [options], callback); | ||
}; | ||
const stopTracking = () => { | ||
@@ -103,2 +107,10 @@ exec('stopTracking'); | ||
const startTrip = (options, callback) => { | ||
exec('startTrip', [options], callback); | ||
}; | ||
const stopTrip = () => { | ||
exec('stopTrip'); | ||
}; | ||
const getContext = (arg1, arg2) => { | ||
@@ -159,2 +171,3 @@ if (typeof arg1 === 'function') { | ||
startTrackingContinuous, | ||
mockTracking, | ||
stopTracking, | ||
@@ -169,2 +182,4 @@ onEvents, | ||
offError, | ||
startTrip, | ||
stopTrip, | ||
getContext, | ||
@@ -171,0 +186,0 @@ searchPlaces, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
93738
850