Use CycleMap for map.
[wolnelektury.git] / src / wolnelektury / static / js / book_text / references.js
index dcbb3c8..23f7b03 100644 (file)
@@ -4,8 +4,8 @@
     if (interestingReferences) {
         interestingReferences = $.parseJSON(interestingReferences);
     }
-    if (interestingReferences) {
-        $("settings-references").show();
+    if (Object.keys(interestingReferences).length) {
+        $("#settings-references").css('display', 'block');
     }
 
     
@@ -18,8 +18,8 @@
         if (map_enabled) return;
 
         map = L.map('reference-map').setView([0, 0], 11);
-        L.tileLayer('https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png?lang=pl', {
-            attribution: 'Map data &copy; <a href="http://openstreetmap.org/copyright">OpenStreetMap contributors</a>'
+        L.tileLayer('https://tile.thunderforest.com/cycle/{z}/{x}/{y}.png?apikey=a8a97f0ae5134403ac38c1a075b03e15', {
+            attribution: 'Maps © <a href="http://www.thunderforest.com">Thunderforest</a>, Data © <a href="http://www.openstreetmap.org/copyright">OpenStreetMap contributors</a>'
         }).addTo(map);
 
         map_enabled = true;
     }
     
 
-    $("#reference-close").on("click", function() {
+    $("#reference-close").on("click", function(event) {
+        event.preventDefault();
         $("#reference-box").hide();
     });
     
     $('a.reference').each(function() {
         $this = $(this);
         uri = $this.attr('data-uri');
-        console.log('check ' + uri);
         if (interestingReferences.hasOwnProperty(uri)) {
             $this.addClass('interesting');
             ref = interestingReferences[uri];