I'm having some issues to put angular-google-maps working on my website.
After include the needed libraries (googleapis/ lodash.js/ angular-google-maps.min.js), I'm unable to configure the app.
I added 'google-maps' to the app module, like this:
var app = angular.module('app', ['iso.directives', 'ngSanitize', 'ui.select', 'facebook', 'google-maps'.ns()]);
And I received, "undefined is not a function" error.
I'm following the tutorial in https://angular-ui.github.io/angular-google-maps/#!/use
I've seen this (.ns() undefined in google angular maps directive) thread, but doesn't help.
Can anyone help me?
Thanks!