Sha256: 8cddb1787462e61db0414de81e43a3a72565b825cca1c55be36b11e0845e2ea4
Contents?: true
Size: 1.97 KB
Versions: 10
Compression:
Stored size: 1.97 KB
Contents
Blacklight.onLoad(function() { var historySupported = !!(window.history && window.history.pushState); if (historySupported) { History.Adapter.bind(window, 'statechange', function() { var state = History.getState(); updatePage(state.url); }); } $('[data-map="index"]').each(function() { var data = $(this).data(), opts = { baseUrl: data.catalogPath }, geoblacklight, bbox; if (typeof data.mapBbox === 'string') { bbox = L.bboxToBounds(data.mapBbox); } else { $('.document [data-bbox]').each(function() { if (typeof bbox === 'undefined') { bbox = L.bboxToBounds($(this).data().bbox); } else { bbox.extend(L.bboxToBounds($(this).data().bbox)); } }); } if (!historySupported) { $.extend(opts, { dynamic: false, searcher: function() { window.location.href = this.getSearchUrl(); } }); } // instantiate new map geoblacklight = new GeoBlacklight.Viewer.Map(this, { bbox: bbox }); // set hover listeners on map $('#content') .on('mouseenter', '#documents [data-layer-id]', function() { var bounds = L.bboxToBounds($(this).data('bbox')); geoblacklight.addBoundsOverlay(bounds); }) .on('mouseleave', '#documents [data-layer-id]', function() { geoblacklight.removeBoundsOverlay(); }); // add geosearch control to map geoblacklight.map.addControl(L.control.geosearch(opts)); }); function updatePage(url) { $.get(url).done(function(data) { var resp = $.parseHTML(data); $doc = $(resp); $('#documents').replaceWith($doc.find('#documents')); $('#sidebar').replaceWith($doc.find('#sidebar')); $('#sortAndPerPage').replaceWith($doc.find('#sortAndPerPage')); if ($('#map').next().length) { $('#map').next().replaceWith($doc.find('#map').next()); } else { $('#map').after($doc.find('#map').next()); } }); } });
Version data entries
10 entries across 10 versions & 1 rubygems