Sha256: 14922b260915bb251b6583bc121c3105b37d6e561f6c25dbc0d036b8fd905bfb
Contents?: true
Size: 928 Bytes
Versions: 2
Compression:
Stored size: 928 Bytes
Contents
var map; (function() { var map_provider = "{{ site.conference.location.map.map_provider | default: 'OpenStreetMap.Mapnik' }}"; var home_coord = [{{ site.conference.location.map.home_coord }}]; var default_zoom = {{ site.conference.location.map.default_zoom | default: 17 }}; if (document.getElementById('map')) { map = L.map('map').setView(home_coord, default_zoom); L.tileLayer.provider(map_provider).addTo(map); L.easyButton('far fa-star', function(){ map.setView(home_coord, default_zoom); }, '{{ site.data.lang[site.conference.lang].location.focus_conf | default: "Center map on conference location" }}').addTo(map); L.control.locate({ flyTo: true, strings: { title: '{{ site.data.lang[site.conference.lang].location.focus_me | default: "Show me where I am" }}' } }).addTo(map); } })();
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-conference-2.4.1 | _includes/js/conference-map.js |
jekyll-theme-conference-2.4.0 | _includes/js/conference-map.js |