Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

meanie-angular-geo-locate

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

meanie-angular-geo-locate

AngularJS module for geolocation

  • 0.2.6
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

meanie-angular-geo-locate

npm version node dependencies github issues codacy Join the chat at https://gitter.im/meanie/meanie

AngularJS module for geolocation

Installation

You can install this package using meanie, npm or bower.

meanie

meanie install angular-geo-locate

Then add GeoLocate.Service as a dependency for your app:

angular.module('App.MyModule', ['GeoLocate.Service']);

npm

npm install meanie-angular-geo-locate

Then add as a dependency for your app:

angular.module('App.MyModule', [require('meanie-angular-geo-locate')]);

bower

bower install meanie-angular-geo-locate

Add a <script> to your index.html:

<script src="/bower_components/meanie-angular-geo-locate/release/meanie-angular-geo-locate.js"></script>

Then add GeoLocate.Service as a dependency for your app:

angular.module('App.MyModule', ['GeoLocate.Service']);

Usage

angular.module('App.MyModule').controller('MyController', function($geoLocate) {
  $geoLocate().then(function(position) {
    //Position obtained
  }, function(reason) {
    //Geolocation failed due to reason
  });
});

Issues & feature requests

Please report any bugs, issues, suggestions and feature requests in the meanie-angular-geo-locate issue tracker.

Contributing

Pull requests are welcome! Please create them against the dev branch of the repository.

If you would like to contribute to Meanie, please check out the Meanie contributing guidelines.

License

(MIT License)

Copyright 2015, Adam Buczynski

Keywords

FAQs

Package last updated on 20 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc