Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Angularjs Google Maps | 1,568 | 173 | 12 | 4 years ago | 66 | November 25, 2018 | 86 | mit | HTML | |
The Simplest AngularJS Google Maps V3 Directive | ||||||||||
Angular Recaptcha | 501 | 63 | 7 | 2 years ago | 19 | July 30, 2018 | 78 | mit | JavaScript | |
AngularJS directive to add a reCaptcha widget to your form | ||||||||||
Angularjs Cart | 288 | 10 years ago | 5 | apache-2.0 | JavaScript | |||||
AngularJS Shopping Cart modified to support Stripe.js (includes Google Wallet and Paypal already) support | ||||||||||
Angular Google Places Autocomplete | 261 | 10 | 1 | 3 years ago | 3 | September 08, 2016 | 85 | mit | JavaScript | |
Pure AngularJS directive for Google Places Autocomplete | ||||||||||
Angular Gm | 205 | 6 years ago | 3 | January 05, 2017 | 3 | mit | JavaScript | |||
AngularJS Google Maps Directives | ||||||||||
Angular Google Gapi | 174 | 10 | 2 | 6 years ago | 6 | November 14, 2016 | 18 | JavaScript | ||
An AngularJS module for using all Google Apis and your Google Cloud Endpoints (Google App Engine) with OAuth. This module uses Google APIs Client Library for JavaScript, available for all GApis. | ||||||||||
Lookaround | 172 | 4 years ago | 8 | mit | JavaScript | |||||
AngularJS Learning Playground ( with Twitter bootstrap, Google maps API, TDD using Karma runner ) | ||||||||||
Angular Directive.g Signin | 148 | 52 | 6 years ago | June 29, 2015 | 17 | JavaScript | ||||
:triangular_ruler: AngularJS Directive for Google Plus Sign-in Button | ||||||||||
Nghellostyle | 121 | 7 years ago | 4 | JavaScript | ||||||
AngularJS seed for Google Closure Compiler | ||||||||||
Angular Google Maps Native | 94 | 4 | 2 | 7 years ago | 5 | August 10, 2015 | 5 | JavaScript | ||
AngularJS directives for the Google Maps Javascript API using the native way |
AngularGM is a set of directives for embedding Google Maps in your application using the Google Maps Javascript API.
Latest version: 2.0.1
Install angular-gm
bower install AngularGM
npm install angular-gm
Include the required libraries
<script src="//maps.googleapis.com/maps/api/js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js"></script>
<script src="//path/to/angular-gm.js"></script>
Declare a dependency on the AngularGM
module
var app = angular.module('myModule', ['AngularGM']);
Make a map
<gm-map gm-map-id="'myMap'" gm-center="center" gm-zoom="zoom" gm-bounds="bounds" gm-map-type-id="mapTypeId" style="width:500px;height:500px;"></gm-map>
Clone the repo, git clone git://github.com/dylanfprice/angular-gm.git
AngularGM is tested with karma
$ sudo npm install grunt-cli --global
$ npm install
$ grunt karma:server
You can build the latest version using grunt
.
$ grunt build
You can also view the latest documentation on your local machine.
$ grunt && grunt connect
then go to http://localhost:8000/dist/docs/
Pull Requests welcome!
Dylan Price ([email protected], http://github.com/dylanfprice)
Inspired by Nicolas Laplante's angular-google-maps directive (nlaplante/angular-google-maps)
README and project layout stolen from Olivier Louvignes' AngularStrap repo (mgcrea/angular-strap)
Much of the gmInfoWindow directive code is from the ui-map project
Moved to CHANGELOG.md