Guest User

Untitled

a guest
Dec 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var marker;
  2. for (var i = 0; i < ('<%= Buses.Count %>' - 1); i++) {
  3. marker = new google.maps.Marker({
  4. position: new google.maps.LatLng('<%= Buses['i'].latitude %>', '<%= Buses['i'].longitude %>'),
  5. map: map
  6. });
  7. }
  8.  
  9. public static List<Bus> Buses = new List<Bus>();
Add Comment
Please, Sign In to add comment