Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <script>
  2. function initialize() {
  3. var map = new google.maps.Map(document.getElementById('map_canvas'), {
  4. zoom: 8,
  5. center: new google.maps.LatLng(22.304634, 73.161070),
  6. mapTypeId: google.maps.MapTypeId.ROADMAP
  7. }),
  8. directions = new google.maps.DirectionsService(),
  9. displayer = new google.maps.DirectionsRenderer({
  10. draggable: true
  11. });
  12.  
  13. displayer.setMap(map);
  14. directions.route({
  15. origin: new google.maps.LatLng(22.304634, 73.161070),
  16. destination: new google.maps.LatLng(23.022242, 72.548844),
  17. travelMode: google.maps.DirectionsTravelMode.DRIVING
  18. }, function (result) {
  19. displayer.setDirections(result);
  20. });
  21. }
  22. google.maps.event.addDomListener(window, 'load', initialize);
  23. google.maps.event.addListener(displayer, 'directions_changed', some_method);
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement