1

我在将 angular-google-maps 放在我的网站上时遇到了一些问题。

包含所需的库(googleapis/lodash.js/angular-google-maps.min.js)后,我无法配置应用程序。

我在应用模块中添加了“google-maps”,如下所示:

var app = angular.module('app', ['iso.directives', 'ngSanitize', 'ui.select', 'facebook', 'google-maps'.ns()]);

我收到“未定义不是函数”错误。

我正在关注https://angular-ui.github.io/angular-google-maps/#!/use中的教程

我已经看到了这个(.ns() undefined in google angular maps 指令)线程,但没有帮助。

谁能帮我?

谢谢!

4

1 回答 1

1

看起来他们已经摆脱了 ns() 函数,但还没有更新文档:

https://github.com/angular-ui/angular-google-maps/pull/872/ https://github.com/angular-ui/angular-google-maps/issues/821

在您的代码中将“string”.ns() 的所有实例更新为“uiGmapstring”,您应该会很好。

于 2014-11-19T06:54:22.557 回答