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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -