1.0.4 • Published 8 years ago

land-or-sea v1.0.4

Weekly downloads
4
License
ISC
Repository
github
Last release
8 years ago

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);
    }
});
1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago