Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. function displayMapAndClick ()
  2. {
  3. var latlng = new google.maps.LatLng (29.0167, 77.3833);
  4. var myOptions =
  5. {
  6. zoom:zm,
  7. center:latlng,
  8. mapTypeId:google.maps.MapTypeId.ROADMAP
  9. };
  10.  
  11. map = new google.maps.Map (document.getElementById ("map"), myOptions);
  12. directionsDisplay.setMap (map);
  13. }
  14.  
  15. var mapOptions = {
  16. /* Initial zoom level */
  17. zoom: 8
  18. ...
  19. };
  20. map = new google.maps.Map(..., mapOptions);
  21. /* Change zoom level to 12 */
  22. map.setZoom(12);
  23.  
  24. ...
  25. map = new google.maps.Map(..., mapOptions);
  26. /* Change zoom level to 12 */
  27. google.maps.event.addListenerOnce(map, 'bounds_changed', function() {
  28. map.setZoom(12);
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement