###This Plugin is an extension from: cordova-plugin-geofence
Plugin forked from Cowbell Repository to extend functionalities. The main goal here was add more features like as:
- Works with the Application closed;
- On Notification Clicked the app can be opened by a DeepLink, Deeplink is sent in the Geofence Register on the data parameter;
- Upgrade Google Play Service for version 8.4;
- When the application is opened from notification the notification data can be delivered as a deeplink or in the WebView;
- Only Create Notifications when the app is in background or closed;
Plugin to monitor circular geofences using mobile devices. The purpose is to notify user if crossing the boundary of the monitored geofence.
Geofences persist after device reboot. You do not have to open your app first to monitor added geofences
From master
cordova plugin add https://github.com/OutSystems/cordova-plugin-geofence.git
Using cordova CLI
cordova plugin rm cordova-plugin-geofence
- Android
- iOS >=7.0
- Windows Phone 8.1
- using Universal App (cordova windows platform)
- using Silverlight App (cordova wp8 platform retargeted to WP 8.1)
Cordova initialize plugin to window.geofence
object.
window.geofence.initialize(onSuccess, onError)
window.geofence.addOrUpdate(geofences, onSuccess, onError)
window.geofence.remove(geofenceId, onSuccess, onError)
window.geofence.removeAll(onSuccess, onError)
window.geofence.getWatched(onSuccess, onError)
All methods returning promises, but you can also use standard callback functions.
For listening of geofence transistion you can override onTransitionReceived method
window.geofence.onTransitionReceived(geofences)
TransitionType.ENTER
= 1TransitionType.EXIT
= 2TransitionType.BOTH
= 3
The plugin is not available until deviceready
event is fired.
document.addEventListener('deviceready', function () {
// window.geofence is now available
window.geofence.initialize();
}, false);
window.geofence.addOrUpdate({
id: String, //A unique identifier of geofence
latitude: Number, //Geo latitude of geofence
longitude: Number, //Geo longitude of geofence
radius: Number, //Radius of geofence in meters
transitionType: Number, //Type of transition 1 - Enter, 2 - Exit, 3 - Both
notification: { //Notification object
id: Number, //optional should be integer, id of notification
title: String, //Title of notification
text: String, //Text of notification
smallIcon: String, //Small icon showed in notification area, only res URI
icon: String, //icon showed in notification drawer
openAppOnClick: Boolean,//is main app activity should be opened after clicking on notification
vibration: [Integer], //Optional vibration pattern - see description
data: Object, //Custom object associated with notification
dateStart: Date, // Initial Date to start dispatch events of a Geofence - Optiona parameter
dateEnd: Date, // End Date to stop dispatch events of a Geofence - Optiona parameter
happensOnce: Boolean, // only show a notification once - Default value false
}
}).then(function () {
console.log('Geofence successfully added');
}, function (reason) {
console.log('Adding geofence failed', reason);
});
Adding more geofences at once
window.geofence.addOrUpdate([geofence1, geofence2, geofence3]);
Geofence overrides the previously one with the same id
.
All geofences are stored on the device and restored to monitor after device reboot.
Notification overrides the previously one with the same notification.id
.
You can set vibration pattern for the notification or disable default vibrations.
To change vibration pattern set vibrate
property of notification
object in geofence.
###Examples
//disable vibrations
notification: {
vibrate: [0]
}
//Vibrate for 1 sec
//Wait for 0.5 sec
//Vibrate for 2 sec
notification: {
vibrate: [1000, 500, 2000]
}
###Platform quirks
Fully working only on Android.
On iOS vibration pattern doesn't work. Plugin only allow to vibrate with default system pattern.
Windows Phone - current status is TODO
To set notification icons use icon
and smallIcon
property in notification
object.
As a value you can enter:
- name of native resource or your application resource e.g.
res://ic_menu_mylocation
,res://icon
,res://ic_menu_call
- relative path to file in
www
directory e.g.file://img/ionic.png
smallIcon
- supports only resources URI
###Examples
notification: {
smallIcon: 'res://my_location_icon',
icon: 'file://img/geofence.png'
}
###Platform quirks
Works only on Android platform so far.
Removing single geofence
window.geofence.remove(geofenceId)
.then(function () {
console.log('Geofence sucessfully removed');
}
, function (reason){
console.log('Removing geofence failed', reason);
});
Removing more than one geofence at once.
window.geofence.remove([geofenceId1, geofenceId2, geofenceId3]);
window.geofence.removeAll()
.then(function () {
console.log('All geofences successfully removed.');
}
, function (reason) {
console.log('Removing geofences failed', reason);
});
window.geofence.getWatched().then(function (geofencesJson) {
var geofences = JSON.parse(geofencesJson);
});
window.geofence.onTransitionReceived = function (geofences) {
geofences.forEach(function (geofences) {
console.log('Geofence transition detected', geo);
});
};
Android, iOS only
window.geofence.onTransitionReceived
callback will be called and, for each geofence the property openedFromNotification
will be true.
#Example usage
Adding geofence to monitor entering Gliwice city center area of radius 3km
window.geofence.addOrUpdate({
id: "69ca1b88-6fbe-4e80-a4d4-ff4d3748acdb",
latitude: 50.2980049,
longitude: 18.6593152,
radius: 3000,
transitionType: TransitionType.ENTER,
notification: {
id: 1,
title: "Welcome in Gliwice",
text: "You just arrived to Gliwice city center.",
openAppOnClick: true
}
}).then(function () {
console.log('Geofence successfully added');
}, function (reason) {
console.log('Adding geofence failed', reason);
})
##Android
This plugin uses Google Play Services so you need to have it installed on your device. This plugin uses GSON to do parse of the JSON, if you use the same library in your project you can have conflicts.
##iOS
Plugin is written in Swift. All xcode project options to enable swift support are set up automatically after plugin is installed. Plugin has a category to AppDelegate that assumes the name "AppDelagate" if you have a diferent name in your project you need replace the name in this category.
##Windows phone 8.1
Plugin can be used with both windows phone 8.1 type projects Univeral App, Silverlight App.
In order to use toast notifications you have to enable this feature in appxmanifest file either using UI in Visual Studio or edit file setting attribute ToastCapable="true" in m3:VisualElements node under Package/Applications/Application.
If you are retargeting WP 8.0 to WP 8.1 you need to register background task to perform geofence notifications. Register it via UI in Visual Studio or add following code under Package/Applications/Application/Extensions
<Extension Category="windows.backgroundTasks" EntryPoint="GeofenceComponent.GeofenceTrigger">
<BackgroundTasks>
<m2:Task Type="location" />
</BackgroundTasks>
</Extension>
##Installation
- git clone https://github.com/OutSystems/cordova-plugin-geofence
- change into the new directory
npm install
- OutSystems - Mobility Experts
- João Gonçalves, joao.goncalves@outsystems.com
- Rúben Gonçalves, ruben.goncalves@outsystems.com
- Vitor Oliveira, vitor.oliveira@outsystems.com
- Vitor Oliveira, vitor.oliveira@outsystems.com
###Copyright OutSystems, 2016
Original Creator: Cowbell-labs.
##License
This software is released under the Apache 2.0 License.