diff --git a/index.html b/index.html
index e418a29..616059f 100644
--- a/index.html
+++ b/index.html
@@ -147,6 +147,17 @@
Show the Map or the Log
var mapCanvas = document.getElementById('map-canvas');
toggleElement(mapCanvas, sender);
}
+ // If a lat/long is specified in the query string, try to use it as the
+ // QTH/Operating location for the log file.
+ // This allows for semi-obvious location-range mapping
+ // ex: qth=22.303940,114.170372 will place a yellow marker at 22.3, 114.1 on the map
+ var qth = getQueryVariable('qth');
+ if (qth !== null) {
+ createQTHMarker(qth, "Home QTH")
+ //createQTHMarker(40.786, -73.961, "Home QTH")
+ }
+
+