angular.js:13920
Error: [$compile:ctreq] http://errors.angularjs.org/1.5.8/$compile/ctreq?p0=leaflet&p1=center
at Error (native)
at http://localhost:8000/static/www/lib/angular/angular.min.js:6:412
at ib (http://localhost:8000/static/www/lib/angular/angular.min.js:72:93)
at p (http://localhost:8000/static/www/lib/angular/angular.min.js:66:380)
at g (http://localhost:8000/static/www/lib/angular/angular.min.js:58:481)
at g (http://localhost:8000/static/www/lib/angular/angular.min.js:58:498)
at g (http://localhost:8000/static/www/lib/angular/angular.min.js:58:498)
at g (http://localhost:8000/static/www/lib/angular/angular.min.js:58:498)
at http://localhost:8000/static/www/lib/angular/angular.min.js:58:119
at Object.<anonymous> (http://localhost:8000/static/www/lib/angular-ui-router/release/angular-ui-router.min.js:7:24081) <div ui-view="menuContent" class="ng-scope">
I noticed that leaflet-directive reads all "center" html attributes in different tags, including "ui-google-map", so modified my angular-leaflet-directive.js file, eliminating the "center" attribute from the $scope. That partially solved my problem since I will continue to have conflicts with the "bounds" attribute.
My log error
my app.js
my view for angular-google-map
my view for angular-leaflet-directive
I noticed that leaflet-directive reads all "center" html attributes in different tags, including "ui-google-map", so modified my angular-leaflet-directive.js file, eliminating the "center" attribute from the $scope. That partially solved my problem since I will continue to have conflicts with the "bounds" attribute.