Guest User

Untitled

a guest
Oct 18th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function init() {
  2. var sweden = new google.maps.LatLng(62.393916, 17.283713);
  3. var uppsala = new google.maps.LatLng(59.577368, 17.715454);
  4. //var miun = new google.maps.LatLng(62.393916, 17.283713);
  5.  
  6. var myoptions = {
  7. zoom: 5,
  8. center: sweden,
  9. mapTypeId: google.maps.MapTypeId.ROADMAP
  10. }
  11. var map = new google.maps.Map(document.getElementById("map"), myoptions);
  12.  
  13. var marker = new google.maps.Marker({
  14. position: uppsala,
  15. map: map,
  16. title:"<h2>Uppsala universitet</h2>"
  17. });
  18. }
Add Comment
Please, Sign In to add comment