• This repository has been archived on 11/May/2020
  • Stars
    star
    1,526
  • Rank 29,673 (Top 0.7 %)
  • Language
    HTML
  • License
    MIT License
  • Created over 10 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The Simplest AngularJS Google Maps V3 Directive

Google Maps AngularJS Directive

Demo
Documentation
Road Trip By StreetView
Maps Can Talk | Custom Marker

If you like this, you also may like these:

Background

There is already one for this. However, I found myself taking a totally different approach than the existing one, such as:

  1. Everything in tag and attributes.
    Thus, users don't even need knowledge of JavaScript.

  2. Expose all original Google Maps V3 API to the user.
    No hiding, no wrapping or whatsoever. By doing so, programmers don't need to learn how to use this module. You only need to know Google Maps V3 API.

There is a blog that introduces this module. The title of it is 'Google Map As The Simplest Way'

To get started

For Bower users,

$ bower install ngmap

  1. Include ng-map.min.js: <script src="/bower_components/ngmap/build/scripts/ng-map.min.js"></script>

  2. Include Google Maps:
    <script src="http://maps.google.com/maps/api/js"></script>

  3. Name your AngularJS app ngMap, or add it as a dependency

    var myApp = angular.module('myApp', ['ngMap']);

To get the map instance use the NgMap.getMap() function

app.controller('MyController', function(NgMap) {
  NgMap.getMap().then(function(map) {
    console.log(map.getCenter());
    console.log('markers', map.markers);
    console.log('shapes', map.shapes);
  });
});

For npm users,

$ npm install ngmap

For Meteor users: https://atmospherejs.com/wormy/angularjs-google-maps

Lazy loading of Google Maps JavaScript

Simply wrap the map tag with map-lazy-load="https://maps.google.com/maps/api/js".

<div map-lazy-load="https://maps.google.com/maps/api/js">
  <ng-map center="41,-87" zoom="3"></ng-map>
</div>

If you need to pass in an API key to the javascript, you can set a scope variable in your controller (e.g. $scope.googleMapsUrl="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_HERE";). This can be set from a constant value in your app to standardise the API key to pass to google for multiple controllers.

<div map-lazy-load="https://maps.google.com/maps/api/js"
  map-lazy-load-params="{{googleMapsUrl}}">
  <ng-map center="41,-87" zoom="3"></ng-map>
</div>

FAQ

Grey area in Google Maps

The usual reason why this happens is that the size of the map is changed after the map has been initialized. If you for some reason change the size of the div, you need to trigger the "resize" event and possible recenter the map.

 var center = map.getCenter();
 google.maps.event.trigger(map, "resize");
 map.setCenter(center);

Ref.

Check if a marker is within Map, Rectangle, or Circle

`map.getBounds().contains(marker.getPosition());`

Calculate distance between two position

You can check this out: https://developers.google.com/maps/documentation/javascript/distancematrix. As you see, DistanceMatrix does not require map nor directive.

Another way to do this, is to use directions directive. As you see it here: https://rawgit.com/allenhwkim/angularjs-google-maps/master/testapp/directions2.html, you have access to DirectionsRenderer by using map.directionsRenderers[id]

https://developers.google.com/maps/documentation/javascript/reference?hl=en#DirectionsRenderer

You use getDirections() or directions, then calculate the distance from there. e.g.,

Distance: {{ map.directionsRenderers[0].directions.routes[0].legs[0].distance }}

Directives

  • bicycling-layer
  • custom-control
  • custom-marker (NEW)
  • directions (NEW)
  • drawing-manager (NEW)
  • dynamic-maps-engine-layer
  • fusion-tables-layer
  • heatmap-layer
  • info-window
  • kml-layer
  • map
  • map-data
  • map-lazy-load (NEW)
  • map-type
  • map_controller
  • maps-engine-layer
  • marker
  • overlay-map-type
  • places-auto-complete
  • shape
  • street-view-panorama (NEW)
  • traffic-layer
  • transit-layer

Advanced examples

Contributors

Contributing

  • Clone the repository from GitHub.
  • Change to the cloned directory.
  • npm install to install the build tools
  • gulp build to build the JavaScript & doc files in the /build folder & run the unit tests.
  • gulp clean to clean up the repository by removing files and folders from previous build.
  • gulp test to run the Karma unit test suite.
  • gulp test:e2e to run the Protractor test suite. For the first test run, you may need to update the protractor webdriver manager. It will show the command on screen if this is required (node_modules/gulp-protractor/node_modules/protractor/bin/webdriver-manager update).
  • gulp test:server will start a web server for the testapp on http://localhost:8888

License

MIT License

More Repositories

1

react-openlayers

OpenLayer React Components
TypeScript
198
star
2

angular-jsdoc

AngularJS Template/Plugin for JSDoc 3.
HTML
148
star
3

ngentest

Angular6+ Unit Test Generator For Components, Directive, Services, and Pipes
TypeScript
142
star
4

angular-template

NodeJS AngularJS Server-Side Template Engine
JavaScript
34
star
5

geo-coder

Geo-Coding/Reverse-Lookup with Various Providers
JavaScript
32
star
6

elements-x

Collection of Customizable Custom Elements
TypeScript
23
star
7

mce

Material-Designed Custom Elements
CSS
19
star
8

ngui-common

Angular 6 Virtual Scroll, Lazy Rendering, Virtual List, Autocomplete, etc
HTML
17
star
9

vue-nuxt-practice

Code Example Of VueJS/Nuxt Implementation
Vue
15
star
10

remoteValidation

rails remote form validation
JavaScript
15
star
11

angularjs-autocomplete

AngularJS Autocomplete
JavaScript
15
star
12

html-custom-elements

Custom elements without any framework.
JavaScript
14
star
13

esbuild-x

esbuild + pre builds + post builds
JavaScript
11
star
14

touch-x

Touch Swipe Library For Mobile/Desktop Devices. With event `x-swipe`, you can build a resizer, a drawer, a slide, sortable, even a game.
HTML
11
star
15

class.extend

Copy/Paste node package implementation of John Resig's javascript object inheritance
JavaScript
9
star
16

touch-ui

Fire touch events; tap, double-tap, drag-enter, drop, and much more
JavaScript
8
star
17

erl_to_ruby

erlang term parser written in ruby
Ruby
8
star
18

jsanimation

Simple Javascript Animation
JavaScript
7
star
19

nextfile.vim

vim script to open related files
Vim Script
7
star
20

webtest

Selenium WebDriverJS Test In Plain English
JavaScript
6
star
21

mock-responses

NodeJS http request middleware with admin interface
SCSS
3
star
22

ngx-module-starter

Angular5+ library development seed using jest, codecept, ngx-packagr
TypeScript
3
star
23

ngd

Collection of Custom Angularjs Directives
JavaScript
2
star
24

gulp-page-json

Generates full index of all pages and pagination files in JSON format
JavaScript
2
star
25

nui-form-for

Graceful AngularJS Validation Injector
JavaScript
2
star
26

webpack-typescript-seed

JavaScript
2
star
27

proctree

Get or show process tree
JavaScript
1
star
28

html-custom-element

HTML5 Custom Element Wrapper (IE11 compatible)
JavaScript
1
star
29

java-itext-html2pdf

Convert HTML to PDF, iText7 + Maven + Spring Boot
HTML
1
star
30

drawpage

Draw outline of your web page and disappear.
HTML
1
star
31

js-template

Rewritten and Improved John Resig's micro javascipt template
JavaScript
1
star
32

play-akka-helloworld

Java
1
star
33

elements-x.new

Custom-built custom elements
TypeScript
1
star
34

waitnrun

start servers and run your test
JavaScript
1
star
35

html5-angular-responsive-layout

CSS
1
star
36

akka-http-helloworld

Akka-HTTP Minimal Example Helloworld
Java
1
star
37

akka-http-api-helloworld

Akka HTTP minimal JSON Request/Response example
Java
1
star
38

loadtesterl

loadtesterl
Erlang
1
star