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
Post a Comment