Sha256: 193dba41cda98fe1fca96decedf045303d89ea3f9f0dd3b05d6331b50b1a4ab1
Contents?: true
Size: 662 Bytes
Versions: 1
Compression:
Stored size: 662 Bytes
Contents
<div id="library_map" style="width: 500px; height: 500px;"></div> <script> var mymap = L.map('library_map').setView([<%= @library.latitude %>, <%= @library.longitude %>], 13); L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: 'Map data © <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="https://www.mapbox.com/">Mapbox</a>', maxZoom: 18 }).addTo(mymap); L.marker([<%= @library.latitude %>, <%= @library.longitude %>]).addTo(mymap).bindPopup('<%= @library.display_name %>').openPopup(); </script>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
enju_library-0.4.0.rc.1 | app/views/libraries/_map.html.erb |