cordova-plugin-wayfarer

1.0.11 • Public • Published

🌊⛵🌊 Cordova Wayfarer Plugin

Cordova plugin for determining activity based on device motion.

Purpose

Wayfarer predicts the current activity a user is engaged in by analayzing the device's motion and geolocation.

Installation

cordova plugin add cordova-plugin-wayfarer

Supported Platforms

  • Android
  • iOS

Methods

  • Wayfarer.subscribe
  • Wayfarer.unsubscribe [not complete]

Example

Wayfarer.subscribe(
    function(activityData){
        // activityData returns: 
        // {
        // activity: 'AUTOMOTIVE', 
        // confidence: '39'
        // }
    },
    function(error){
        console.error(error); // Returns error
    }
);
 
Wayfarer.unsubscribe(
    function(){},
    function(error){
        console.error(error); // Returns error
    }
);

Credits

Disclaimer

The Cordova Wayfarer Plugin is in its infant stages. The subscribe method is production ready, but there isn't even a way to unsubscribe from events yet. Also, I am not fluent in Objective-C or Java, so you will see some ugly code. If you would like, give me a hand and help clean it up!

Package Sidebar

Install

npm i cordova-plugin-wayfarer

Homepage

bitsmithy.io

Weekly Downloads

1

Version

1.0.11

License

MIT

Unpacked Size

25.3 kB

Total Files

11

Last publish

Collaborators

  • evanwieland