Looking into the console
, you can see following error:
TypeError: $element.bind
is not a function
at new __MapController
(ng-map.js:318)
flex
attributes are applying CSS classes styled as follow:
./angular-material.min.css
.layout-row>.flex-66 {
-webkit-box-flex: 1;
-webkit-flex: 1 1 66.66%;
flex: 1 1 66.66%;
max-width: 66.66%;
max-height: 100%;
box-sizing: border-box
}
And then some other styles, but those are responsible for flexgrid. If you apply the styles manually on the <ng-map>
's parent, they do work.
Mentioned error in <ng-map>
stops scripts execution at some point soon enough to not apply expected .flex-*
class form ./angular-material.min.css on the wrapping <div>
.
Consider opening new issue (I checked them, there's none on the matter now)
or just using different map plugin.