角度ui-bootstrap和leafletjs

时间:2014-05-23 17:09:39

标签: angularjs twitter-bootstrap leaflet

我想在地图上为标记做模态窗口。 所以,我为地图添加了leafletjs,我希望在模态窗口中包含ui-bootstrap

var scotchApp = angular.module('scotchApp', ['ngRoute', 'leaflet-directive']);

但如果我这样做

var scotchApp = angular.module('scotchApp', ['ngRoute', 'ui-bootstrap', 'leaflet-directive']);

我得到了

[$injector:modulerr] http://errors.angularjs.org/1.2.6/$injector/modulerr?p0=scotchApp&p1=Error%…rjs.org%2F1.2.6%2F%24injector%2Fmodulerr%3Fp0%3Dui-bootstrap%26p1%3DError%...<omitted>...6) 
那是什么?感谢。

1 个答案:

答案 0 :(得分:1)

您要包含一个不存在的模块:'ui-bootstrap'

正确的版本是'ui.bootstrap'

var scotchApp = angular.module('scotchApp', ['ngRoute', 'ui.bootstrap', 'leaflet-directive']);

编辑:

不要忘记在您的页面中包含该库:

<script type="text/javascript" src="path/to/uibootstrap.js"></script>

Official UI-Bootstrap Getting Started docs here