Advertisement
Guest User

Untitled

a guest
May 27th, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
  2. <script>
  3. var map;
  4. function initialize() {
  5. var mapOptions = {
  6. zoom: 8,
  7. center: new google.maps.LatLng(-34.397, 150.644)
  8. };
  9. map = new google.maps.Map(document.getElementById('map-canvas'),
  10. mapOptions);
  11. }
  12.  
  13. google.maps.event.addDomListener(window, 'load', initialize);
  14.  
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement