Created
October 6, 2016 20:31
-
-
Save mikejakobsen/1a44a4bb48f019f96a0344be92e548dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Kort</title> | |
| <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> | |
| <meta charset="utf-8"> | |
| <style> | |
| html, body { | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| #map { | |
| height: 100%; | |
| } | |
| ul.topnav { | |
| list-style-type: none; | |
| margin: 0; | |
| padding: 0; | |
| overflow: hidden; | |
| background-color: #333; | |
| } | |
| ul.topnav li {float: left;} | |
| ul.topnav li a { | |
| display: inline-block; | |
| color: #f2f2f2; | |
| text-align: center; | |
| padding: 14px 16px; | |
| text-decoration: none; | |
| transition: 0.3s; | |
| font-size: 17px; | |
| } | |
| ul.topnav li a:hover {background-color: #555;} | |
| ul.topnav li.icon {display: none;} | |
| @media screen and (max-width:680px) { | |
| ul.topnav li:not(:first-child) {display: none;} | |
| ul.topnav li.icon { | |
| float: right; | |
| display: inline-block; | |
| } | |
| } | |
| @media screen and (max-width:680px) { | |
| ul.topnav.responsive {position: relative;} | |
| ul.topnav.responsive li.icon { | |
| position: absolute; | |
| right: 0; | |
| top: 0; | |
| } | |
| ul.topnav.responsive li { | |
| float: none; | |
| display: inline; | |
| } | |
| ul.topnav.responsive li a { | |
| display: block; | |
| text-align: left; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <ul class="topnav" id="myTopnav"> | |
| <li><a class="active" href="#home"><img src="../img/logo.png" width="65px"> </a></li> | |
| <li><a href="#news">Mine favoritter</a></li> | |
| <li><a href="#contact">Vand</a></li> | |
| <li class="icon"> | |
| <a href="javascript:void(0);" style="font-size:15px;" onclick="myFunction()">Min Profil</a> | |
| </li> | |
| </ul> | |
| <script> | |
| function myFunction() { | |
| var x = document.getElementById("myTopnav"); | |
| if (x.className === "topnav") { | |
| x.className += " responsive"; | |
| } else { | |
| x.className = "topnav"; | |
| } | |
| } | |
| </script> | |
| <div id="map"></div> | |
| <script> | |
| // Note: This example requires that you consent to location sharing when | |
| // prompted by your browser. If you see the error "The Geolocation service | |
| // failed.", it means you probably did not give permission for the browser to | |
| // locate you. | |
| function initMap() { | |
| var map = new google.maps.Map(document.getElementById('map'), { | |
| center: {lat: -34.397, lng: 150.644}, | |
| zoom: 18 | |
| }); | |
| var infoWindow = new google.maps.InfoWindow({map: map}); | |
| // Try HTML5 geolocation. | |
| if (navigator.geolocation) { | |
| navigator.geolocation.getCurrentPosition(function(position) { | |
| var pos = { | |
| lat: position.coords.latitude, | |
| lng: position.coords.longitude | |
| }; | |
| infoWindow.setPosition(pos); | |
| infoWindow.setContent('Du er her'); | |
| map.setCenter(pos); | |
| }, function() { | |
| handleLocationError(true, infoWindow, map.getCenter()); | |
| }); | |
| } else { | |
| // Browser doesn't support Geolocation | |
| handleLocationError(false, infoWindow, map.getCenter()); | |
| } | |
| } | |
| function handleLocationError(browserHasGeolocation, infoWindow, pos) { | |
| infoWindow.setPosition(pos); | |
| infoWindow.setContent(browserHasGeolocation ? | |
| 'Error: The Geolocation service failed.' : | |
| 'Error: Your browser doesn\'t support geolocation.'); | |
| } | |
| </script> | |
| <script> | |
| // When you add a marker using a Place instead of a location, the Maps | |
| // API will automatically add a 'Save to Google Maps' link to any info | |
| // window associated with that marker. | |
| function initMap() { | |
| var map = new google.maps.Map(document.getElementById('map'), { | |
| zoom: 17, | |
| center: {lat: 55.76352, lng: 12.49494} | |
| }); | |
| var marker = new google.maps.Marker({ | |
| map: map, | |
| // Define the place with a location, and a query string. | |
| place: { | |
| location: {lat: 55.76352, lng: 12.49494}, | |
| query: 'Google, Sydney, Australia' | |
| }, | |
| // Attributions help users find your site again. | |
| attribution: { | |
| source: 'Google Maps JavaScript API', | |
| webUrl: 'https://developers.google.com/maps/' | |
| } | |
| }); | |
| // Construct a new InfoWindow. | |
| var infoWindow = new google.maps.InfoWindow({ | |
| content: 'Fyld din vandflaske her! <img src="logoo.png" width="65px">' | |
| }); | |
| // Opens the InfoWindow when marker is clicked. | |
| marker.addListener('click', function() { | |
| infoWindow.open(map, marker); | |
| }); | |
| } | |
| // This example displays a marker at the center of Australia. | |
| // When the user clicks the marker, an info window opens. | |
| function initMap() { | |
| var uluru = {lat: 55.769838, lng: 12.502759}; | |
| var map = new google.maps.Map(document.getElementById('map'), { | |
| zoom: 4, | |
| center: uluru | |
| }); | |
| var contentString = '<div id="content">'+ | |
| '<div id="siteNotice">'+ | |
| '</div>'+ | |
| '<h1 id="firstHeading" class="firstHeading">Uluru</h1>'+ | |
| '<div id="bodyContent">'+ | |
| '<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' + | |
| 'sandstone rock formation in the southern part of the '+ | |
| 'Northern Territory, central Australia. It lies 335 km (208 mi) '+ | |
| 'south west of the nearest large town, Alice Springs; 450 km '+ | |
| '(280 mi) by road. Kata Tjuta and Uluru are the two major '+ | |
| 'features of the Uluru - Kata Tjuta National Park. Uluru is '+ | |
| 'sacred to the Pitjantjatjara and Yankunytjatjara, the '+ | |
| 'Aboriginal people of the area. It has many springs, waterholes, '+ | |
| 'rock caves and ancient paintings. Uluru is listed as a World '+ | |
| 'Heritage Site.</p>'+ | |
| '<p>Attribution: Uluru, <a href="https://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">'+ | |
| 'https://en.wikipedia.org/w/index.php?title=Uluru</a> '+ | |
| '(last visited June 22, 2009).</p>'+ | |
| '</div>'+ | |
| '</div>'; | |
| var infowindow = new google.maps.InfoWindow({ | |
| content: contentString | |
| }); | |
| var marker = new google.maps.Marker({ | |
| position: uluru, | |
| map: map, | |
| title: 'Uluru (Ayers Rock)' | |
| }); | |
| marker.addListener('click', function() { | |
| infowindow.open(map, marker); | |
| }); | |
| } | |
| // This example displays a marker at the center of Australia. | |
| // When the user clicks the marker, an info window opens. | |
| function initMap() { | |
| var uluru = {lat: 55.770300, lng: , 12.504143}; | |
| var map = new google.maps.Map(document.getElementById('map'), { | |
| zoom: 4, | |
| center: uluru | |
| }); | |
| var contentString = '<div id="content">'+ | |
| '<div id="siteNotice">'+ | |
| '</div>'+ | |
| '<h1 id="firstHeading" class="firstHeading">Uluru</h1>'+ | |
| '<div id="bodyContent">'+ | |
| '<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' + | |
| 'sandstone rock formation in the southern part of the '+ | |
| 'Northern Territory, central Australia. It lies 335 km (208 mi) '+ | |
| 'south west of the nearest large town, Alice Springs; 450 km '+ | |
| '(280 mi) by road. Kata Tjuta and Uluru are the two major '+ | |
| 'features of the Uluru - Kata Tjuta National Park. Uluru is '+ | |
| 'sacred to the Pitjantjatjara and Yankunytjatjara, the '+ | |
| 'Aboriginal people of the area. It has many springs, waterholes, '+ | |
| 'rock caves and ancient paintings. Uluru is listed as a World '+ | |
| 'Heritage Site.</p>'+ | |
| '<p>Attribution: Uluru, <a href="https://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">'+ | |
| 'https://en.wikipedia.org/w/index.php?title=Uluru</a> '+ | |
| '(last visited June 22, 2009).</p>'+ | |
| '</div>'+ | |
| '</div>'; | |
| var infowindow = new google.maps.InfoWindow({ | |
| content: contentString | |
| }); | |
| var marker = new google.maps.Marker({ | |
| position: uluru, | |
| map: map, | |
| title: 'Uluru (Ayers Rock)' | |
| }); | |
| marker.addListener('click', function() { | |
| infowindow.open(map, marker); | |
| }); | |
| } | |
| </script> | |
| <script> | |
| // Note: This example requires that you consent to location sharing when | |
| // prompted by your browser. If you see the error "The Geolocation service | |
| // failed.", it means you probably did not give permission for the browser to | |
| // locate you. | |
| function initMap() { | |
| var map = new google.maps.Map(document.getElementById('map'), { | |
| center: {lat: -34.397, lng: 150.644}, | |
| zoom: | |
| }); | |
| var infoWindow = new google.maps.InfoWindow({map: map}); | |
| // Try HTML5 geolocation. | |
| if (navigator.geolocation) { | |
| navigator.geolocation.getCurrentPosition(function(position) { | |
| var pos = { | |
| lat: position.coords.latitude, | |
| lng: position.coords.longitude | |
| }; | |
| infoWindow.setPosition(pos); | |
| infoWindow.setContent('Location found.'); | |
| map.setCenter(pos); | |
| }, function() { | |
| handleLocationError(true, infoWindow, map.getCenter()); | |
| }); | |
| } else { | |
| // Browser doesn't support Geolocation | |
| handleLocationError(false, infoWindow, map.getCenter()); | |
| } | |
| } | |
| function handleLocationError(browserHasGeolocation, infoWindow, pos) { | |
| infoWindow.setPosition(pos); | |
| infoWindow.setContent(browserHasGeolocation ? | |
| 'Error: The Geolocation service failed.' : | |
| 'Error: Your browser doesn\'t support geolocation.'); | |
| } | |
| </script> | |
| <script async defer | |
| src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCQ9Jg_aVPDYPl8zQU0v9LGv76uvYGZgMc&callback=initMap"> | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment