Renamed to streetmap.me

master
Keith Irwin 2017-08-07 17:13:45 -04:00
parent d647cb5357
commit 84cd87848a
No known key found for this signature in database
GPG Key ID: 378933C743E2BBC0
2 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# Streetme
# Streetmap.me
###### by [Keith Irwin](https://keithirwin.us/)
Streetme is a web app written in plain HTML/CSS/JS. It uses [geolocation](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation) and [google street view](https://developers.google.com/maps/documentation/javascript/streetview) to show a panoramic image of your current location.
Streetmap.me) is a web app written in plain HTML/CSS/JS. It uses [geolocation](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation) and [google street view](https://developers.google.com/maps/documentation/javascript/streetview) to show a panoramic image of your current location.
## Instructions

View File

@ -3,7 +3,7 @@
<head>
<!-- Metadata -->
<title>Streetme</title>
<title>Streetmap.me</title>
<!--<link rel="manifest" href="manifest.webmanifest">-->
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta charset="UTF-8">
@ -21,13 +21,12 @@
</head>
<body>
<noscript>You need javascript to use this. </noscript>
<main></main>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAaDEDFAbk7Iefh9y61wuooDH2kWHRT_k8&callback=init">
</script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAaDEDFAbk7Iefh9y61wuooDH2kWHRT_k8&callback=init"></script>
<script src="script.js"></script>
</body>