npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-plugin-compass-accuracy

v1.0.0

Published

A Cordova plugin for Android to monitor the accuracy of the device compass and if needed, request the user to calibrate it via a native dialog.

Downloads

31

Readme

Cordova Request Location Accuracy Plugin Latest Stable Version Total Downloads

Table of Contents

A Cordova plugin for Android to monitor the accuracy of the device compass and if needed, request the user to calibrate it via a native dialog.

donate

I dedicate a considerable amount of my free time to developing and maintaining this Cordova plugin, along with my other Open Source software. To help ensure this plugin is kept updated, new features are added and bugfixes are implemented quickly, please donate a couple of dollars (or a little more if you can stretch) as this will help me to afford to dedicate time to its maintenance. Please consider donating if you're using this plugin in an app that makes you money, if you're being paid to make the app, if you're asking for new features or priority bug fixes.

Overview

When using the device compass on a mobile device, it's important to ensure that the compass is calibrated to ensure the accuracy of the heading values returned by the compass.

On iOS, since the iPhone 5S and iOS 13, the device compass is automatically calibrated by the OS using the motion coprocessor, so this is not something you need to worry about.

However, on Android no such automatic calibration exists. You may have seen the following dialog shown by Google Maps when the compass is not calibrated:

This plugin allows you to monitor the accuracy of the compass and if needed, request the user to calibrate it via a native dialog similar to the one shown by Google Maps:

Installation

Using the Cordova CLI

$ cordova plugin add cordova-plugin-compass-accuracy

Capacitor

$ npm install cordova-plugin-compass-accuracy
$ npx cap sync

Referencing the plugin

The plugin creates the object window.CompassAccuracy which can be referenced after deviceready has fired:

function onDeviceReady(){
  // CompassAccuracy.startMonitoring(...);
  // or window.CompassAccuracy.startMonitoring(...);
}
document.addEventListener("deviceready", onDeviceReady, false);

API

Constants

ACCURACY

Indicates the required or current accuracy of the device compass.

  • HIGH - indicates high accuracy (approximates to less than 5 degrees of error)
  • MEDIUM - indicates medium accuracy (approximates to less than 10 degrees of error)
  • LOW - indicates low accuracy (approximates to less than 15 degrees of error)
  • UNRELIABLE - indicates unreliable accuracy (approximates to more than 15 degrees of error)
  • UNKNOWN - indicates an unknown accuracy value

RESULT_TYPE

Indicates the type of result being returned to the monitor callback.

  • STARTED - indicates that the monitor has been started and the current accuracy is being returned
  • ACCURACY_CHANGED - indicates that the accuracy has changed and the new accuracy is being returned

Methods

startMonitoring(onSuccess: ({type:string, currentAccuracy:number, requiredAccuracy:number}) => void, onError: (error:string) => void, requiredAccuracy?:number)

Starts monitoring the accuracy of the device compass for the required accuracy level.

  • If requiredAccuracy is not specified, the default value of ACCURACY.HIGH is used.
  • This method will be invoked once initially with the current accuracy of the device compass and subsequently whenever the accuracy changes.
  • If the initial or subsequent accuracy is less than the required accuracy, the plugin will display a native dialog to the user requesting that they calibrate the compass.
    • The dialog will be displayed once per app session.

Parameters

  • onSuccess: success callback function that receives a result object containing the following properties:
    • type - the type of result being returned (see RESULT_TYPE constants)
    • currentAccuracy - the current accuracy of the device compass (see ACCURACY constants)
    • requiredAccuracy - the required accuracy of the device compass (see ACCURACY constants)
  • onError: error callback function that receives an error message
  • requiredAccuracy: the required accuracy of the device compass (see ACCURACY constants)

stopMonitoring(onSuccess: () => void, onError: (error:string) => void)

Stops monitoring the accuracy of the device compass.

Parameters

  • onSuccess: success callback function
  • onError: error callback function that receives an error message

getCurrentAccuracy(onSuccess: (accuracy:number) => void, onError: (error:string) => void)

Gets the current accuracy of the device compass.

Parameters

  • onSuccess: success callback function that receives the current accuracy of the device compass (see ACCURACY constants)
  • onError: error callback function that receives an error message

simulateAccuracyChange(accuracy:number, onSuccess: () => void, onError: (error:string) => void)

Simulates a change in the accuracy of the device compass to the specified accuracy. This method is intended for use in testing only.

Parameters

  • accuracy: the new accuracy of the device compass to simulate (see ACCURACY constants)
  • onSuccess: success callback function
  • onError: error callback function that receives an error message

Usage

function onDeviceReady(){
    const requiredAccuracy = CompassAccuracy.ACCURACY.HIGH;
    CompassAccuracy.startMonitoring(function(result){
        console.log(`Compass accuracy ${result.type === CompassAccuracy.RESULT_TYPE.STARTED ? 'started as' : 'changed to'}: ${result.currentAccuracy} (required=${result.requiredAccuracy})`)
    }, function(error){
        console.log(`Failed to start monitoring compass accuracy: ${error}`)
    }, requiredAccuracy);
}
document.addEventListener("deviceready", onDeviceReady, false);

Example project

An example Cordova project illustrating use of this plugin can be found here: https://github.com/dpa99c/cordova-plugin-compass-accuracy-example

License

The MIT License

Copyright (c) 2023 Dave Alden (Working Edge Ltd.)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.