Questions tagged [ng-map]

ng-map is a Google map AngularJS Directive. Its main features are everything in tag and attributes and it exposes all original Google Maps V3 api to the user.

ng-map is a Google map AngularJS Directive. Its main features are:

  • Everything in tag and attributes - Thus, basic users don't even have to know what Javascript is.

  • Expose all original Google Maps V3 api to the user - No hiding, no wraping, 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.

Demos can be found here.

Documentation at: https://rawgit.com/allenhwkim/angularjs-google-maps/master/build/docs/index.html

Github link: https://github.com/allenhwkim/angularjs-google-maps

200 questions
3
votes
1 answer

distance in ng map for angularjs

Travel modes in directions
sachin hunur
  • 281
  • 2
  • 6
  • 17
3
votes
2 answers
3
votes
2 answers

ng-map show the best way between two points (waypoints)

I am using Angularjs with IonicFramework and ng-map. I have read all the documentation here (link), but I don't find how can I show to the user the best way (or a simple way) to go to the user current position to another. I have read this too and…
chemitaxis
  • 13,889
  • 17
  • 74
  • 125
2
votes
0 answers

Issue with ng-map (googlemaps) and usergrid backend

I'm developing a website (matchbus.tours) which uses : Usergrid ng-map and googlemaps to display a map with markers angularJS angular-route since the last update of googlemaps in april 2018 im having the issue, that the site doesn't load the…
xilliman
  • 21
  • 3
2
votes
1 answer

How to show content from a Google Maps address using Sequelize?

I looked for an information for several weeks. First, I'm using AngularJS 1.6 and ngMap module. Here's what I'm doing: I'm using a search box (with ngMap autocomplete) in my Homepage: import htmlTemplate from './searchBox.html'; export default { …
Jek
  • 33
  • 6
2
votes
0 answers

Cannot solve MissingKeyMapError on ng-map

I'm aware that there are already a few questions concerning this topic but none of the answers provided solved the problem. And after searching half the internet I'm desperate for help. The map starts to load for half a second then shows the grey…
2
votes
2 answers

Ng map marker icon with params (url to hosted image) not working

In ng map this works: But if I put in params in "icon":
2
votes
1 answer

AngularJS - Add walking distance to ngMaps with circle

I've been trying to achieve something like is done in this website. So far I've managed to create a map with circles by using ngMaps. Below is the snippet of what I have done till now... Can anyone help me how to go ahead in getting the walking…
2
votes
1 answer

google is not defined or Google Maps API error: MissingKeyMapError

I'm writing component with ng-map inside and I'm following this tutorial.
Mike
  • 20,010
  • 25
  • 97
  • 140
2
votes
2 answers

How can I reinitialize ngMaps when changing routes in Angular, using ui-router?

I'm using ngMap and here's my relevant code:
jmona789
  • 2,711
  • 6
  • 24
  • 57
2
votes
0 answers

calculate dynamic zooming ng-map

How can I dynamically calculate the zoom that is suitable for my map? I want to use setZoom(zoom) but I don't want to add a fixed zoom for all maps, as I'm trying around , some zooms are just too zoomed for some cases and perfect for the others. Any…
sisimh
  • 1,287
  • 3
  • 20
  • 37
2
votes
1 answer

Pass an object as part of ng-map marker

Using markers in ng-map with angular JS
Shorn Jacob
  • 1,183
  • 5
  • 22
  • 38
2
votes
2 answers

Getting a reference to NgMap inside Angular controller

This syntax taken from ngMap https://github.com/allenhwkim/angularjs-google-maps works fine: angular .module('trails') .controller('MyController', function (NgMap) { NgMap.getMap().then(function (map) { …
Steve
  • 1,457
  • 12
  • 25
2
votes
2 answers

Google Maps rendering - strange circles cover the map

I'm using the angularjs-google-maps directive, my code looks like this: (function () { define(['angular', 'app'], function (angular, app) { app.directive('customMap', function () { var customMapTemplate = "
2
votes
0 answers

How do i redraw map unsing ngmap

i use ngmap to draw the google map and every time i change the screen and go back the map is partialy drawed. I already try this solution: How do I force redraw with Google Maps API v3.0?. This is my code: Controller: (function() { 'use…
1 2
3
13 14