1 (function($){$(function(){
3 var interestingReferences = $("#interesting-references").text();
4 if (interestingReferences) {
5 interestingReferences = $.parseJSON(interestingReferences);
7 if (Object.keys(interestingReferences).length) {
8 $("#settings-references").css('display', 'block');
11 var map_enabled = false;
12 var marker = L.circleMarker([0,0]);
15 function enable_map() {
16 $("#reference-map").show('slow');
18 if (map_enabled) return;
20 map = L.map('reference-map').setView([0, 0], 11);
21 L.tileLayer('https://tile.thunderforest.com/cycle/{z}/{x}/{y}.png?apikey=a8a97f0ae5134403ac38c1a075b03e15', {
22 attribution: 'Maps © <a href="http://www.thunderforest.com">Thunderforest</a>, Data © <a href="http://www.openstreetmap.org/copyright">OpenStreetMap contributors</a>'
27 function disable_map() {
28 $("#reference-map").hide('slow');
32 $("#reference-close").on("click", function(event) {
33 event.preventDefault();
34 $("#reference-box").hide();
37 $('a.reference').each(function() {
39 uri = $this.attr('data-uri');
44 if (interestingReferences.hasOwnProperty(uri)) {
45 $this.addClass('interesting');
46 ref = interestingReferences[uri];
48 $this.attr('href', ref.wikipedia_link);
49 $this.attr('target', '_blank');
54 $('a.reference.interesting').on('click', function(event) {
55 event.preventDefault();
57 $("#reference-box").show();
60 uri = $this.attr('data-uri');
61 ref = interestingReferences[uri];
68 ref.location[1] + Math.round(
69 (map.getCenter().lng - ref.location[1]) / 360
73 marker.setLatLng(newLoc);
74 marker.bindTooltip(ref.label).openTooltip();
84 map.removeLayer(marker);
88 $("#reference-images a").remove();
90 $.each(ref.images, function(i, e) {
91 $i = $("<a target='_blank'><img></a>");
92 $i.attr('href', e.page);
93 $('img', $i).attr('src', e.thumburl || e.url);
94 if (e.thumbresolution) {
95 $('img', $i).attr('width', e.thumbresolution[0]).attr('height', e.thumbresolution[1]);
98 $("#reference-images").append($i);
102 $("#reference-link").text(ref.label);
103 $("#reference-link").attr('href', ref.wikipedia_link);
105 _paq.push(['trackEvent', 'html', 'reference']);