3.3.1 • Published 8 years ago

sails-service-location v3.3.1

Weekly downloads
69
License
MIT
Repository
github
Last release
8 years ago

sails-service-location

Build Status Coverage

Downloads Downloads npm version License

semantic-release Commitizen friendly dependencies dev dependencies

Service for Sails framework with Location features.

List of supported location providers

  • Google
  • FreeGeoIP
  • DataScienceToolkit
  • OpenStreetMap
  • MapQuest
  • OpenMapQuest
  • Agol
  • TomTom
  • NominatimMapQuest
  • OpenCage
  • SmartyStreets
  • GeoCodio
  • Yandex
  • Here
  • Teleport

Getting Started

Install this module.

npm install sails-service-location

Then require it in your service and create location instance.

// api/services/LocationService.js
import LocationService from 'sails-service-location';

export default LocationService('google', {
  apiKey: ''
});

// api/controllers/LocationController.js
export default {
  address: function(req, res) {
    LocationService
      .geocode(req.param('address'))
      .then(res.ok)
      .catch(res.negotiate);
  }
};

API

Each of location instances has following methods:

geocode(address)

Get latitude and longitude of specific address. Returns Promise.

address - {String} Address that you want to convert to geocode

reverse(latitude, longitude)

Get address representation from latitude and longitude. Returns Promise.

latitude - {Number} Latitude in coordinates

longitude - {Number} Longitude in coordinates

Examples

Get latitude and longitude of address

let location = LocationService('google', {
  apiKey: '<GOOGLE_API_KEY>'
});

location
  .geocode('Kirovohrad, Ukraine')
  .then(console.log.bind(console))
  .catch(console.error.bind(console));

Get address from latitude and longitude

let location = LocationService('google', {
  apiKey: '<GOOGLE_API_KEY>'
});

location
  .reverse(0, 0)
  .then(console.log.bind(console))
  .catch(console.error.bind(console));

License

The MIT License (MIT)

Copyright (c) 2015 Eugene Obrezkov

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.

3.3.1

8 years ago

3.3.0

8 years ago

3.2.0

9 years ago

3.1.1

9 years ago

3.1.0

9 years ago

3.0.0

9 years ago

2.0.0

9 years ago