我正在使用 angular-google-maps 在 Angular 应用程序中处理谷歌地图。为此,我必须将其添加angular-google-maps.js
到项目中。如果我按以下方式添加脚本,该页面可以正常工作:
<script type="text/javascript"
src="http://www.directiv.es/application/html/js/nlaplante/angular-google-maps/angular-google-maps.js"></script>
但是,如果我使用本地副本,它将不起作用,如下所示:
<script type="text/javascript"
src="js/libs/directiv.es/angular-google-maps.js"></script>
查看 firebug,我看到angular-google-maps.js
文件已加载,但在这种情况下,会出现以下错误:
Uncaught Error: [$injector:modulerr] Failed to instantiate module mapsApp due to:
Error: [$injector:modulerr] Failed to instantiate module google-maps due to:
Error: [$injector:nomod] Module 'google-maps' is not available! You either misspelled the...<omitted>...1)
在网上搜索了几个小时,我没有找到任何原因或解决方案。也许你有一个想法或提示,如何找到原因?