angularjs - ngMap directions directive used with ng-repeat doesn't work after 10th element -


i'm using directions directive in ng-map draw lines point point b , need draw multiple lines. using ng-repeat cannot lines after 10th element.

     <directions ng-repeat="street in streets | filter : query.status"         polyline-options='{strokecolor: "#f64744", strokeweight: "6", strokeopacity: "0.5"}'         draggable="false"         travel-mode="walking"         suppress-markers="true"         origin="{{street.viewport.northeast.lat}}, {{street.viewport.northeast.lng}}"         destination="{{street.viewport.southwest.lat}}, {{street.viewport.southwest.lng}}">      </directions> 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -