Index: /src/django_gheat/website/static/heatmap.js
===================================================================
--- /src/django_gheat/website/static/heatmap.js	(revision 9267)
+++ /src/django_gheat/website/static/heatmap.js	(revision 9269)
@@ -2,7 +2,13 @@
 function init(){
 
-  var lat   = 52.14068;
-  var lon   = 4.48319;
-  var zoom  = 16;
+  var lat = getURLParameter('lat');
+  var lon = getURLParameter('lon');
+  var zoom = getURLParameter('zoom');
+
+  if(lat=='null' || lon=='null' || zoom=='null'){
+    var lat   = 52.14068;
+    var lon   = 4.48319;
+    var zoom  = 16;
+  }
   var projection_wgs = new OpenLayers.Projection("EPSG:4326"); // WGS 1984
 
Index: /src/django_gheat/website/static/heatmap_extensions.js
===================================================================
--- /src/django_gheat/website/static/heatmap_extensions.js	(revision 9267)
+++ /src/django_gheat/website/static/heatmap_extensions.js	(revision 9269)
@@ -1,6 +1,6 @@
 // Uses zoomlevel and mouseposition to call the nodelist.py view. View returns nodes in json format which is read and printed in document element.
-function getNodeList(zoomlevel, mousepos) {
+function getNodeList(zoomlevel, mousepos){
   $.getJSON("/website/nodelist/" + zoomlevel + "," + mousepos.lat + "," + mousepos.lon, 
-    function(json) {
+    function(json){
       content = 'Wireless Leiden nodes on mouseposition:<br /><b>';
       $.each(json, function(i,json){
@@ -10,4 +10,11 @@
       $("#node_list").html(content);
     }
+  );
+}
+
+// Right way to get url parameters?: http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery/1404100#1404100
+function getURLParameter(name) {
+  return decodeURI(
+    (RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1]
   );
 }
Index: /src/django_gheat/website/static/style.css
===================================================================
--- /src/django_gheat/website/static/style.css	(revision 9267)
+++ /src/django_gheat/website/static/style.css	(revision 9269)
@@ -95,5 +95,5 @@
   left:50%;
   margin-left:-150px;
-  bottom:30px;
+  bottom:25px;
   height:8px;
   width:300px;
