diff --git a/google/maps.js b/google/maps.js
index c740e21..f48c55b 100644
--- a/google/maps.js
+++ b/google/maps.js
@@ -15,3 +15,19 @@ function directionsURL(inCommand) {
$('#input').unbind();
});
}
+/*
+var x = document.getElementById("input");
+
+function getLocation() {
+ if (navigator.geolocation) {
+ navigator.geolocation.getCurrentPosition(showPosition);
+ } else {
+ x.innerHTML = "Geolocation is not supported by this browser.";
+ }
+}
+
+function showPosition(position) {
+ x.innerHTML = "Latitude: " + position.coords.latitude +
+ "
Longitude: " + position.coords.longitude;
+}
+*/
diff --git a/index.html b/index.html
index 31a32fa..dac8d61 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,7 @@