land-or-sea

1.0.4 • Public • Published

land-or-sea

Tells if your coordinates are on land or in the middle of the sea.

How to use it?

Install it:

npm install land-or-sea --save-dev

Use it:

var los = require('land-or-sea');
 
var regexFromRule = los.checkForCoordinates(40.440625, -79.995886, function(field, error) {
    if (!error) {
        if (field === 'land') {
            console.log('Location is on land');
        } else {
            console.log('Location is on sea');
        }
    } else {
        console.log(error.message);
    }
});
 

Package Sidebar

Install

npm i land-or-sea

Weekly Downloads

1

Version

1.0.4

License

ISC

Last publish

Collaborators

  • armandgrillet