diff options
author | hellekin <hellekin@cepheide.org> | 2021-01-22 05:32:15 +0100 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2021-01-22 05:32:15 +0100 |
commit | b54a8458d5029b3494165b7430e21b3ae34ecc0c (patch) | |
tree | 32ea6fc6b8774f672325fec52f0ffc97229a9568 /app/views/sections/show.html.erb | |
parent | 1c1aead78192982e221179de6688b944e5b01bf6 (diff) | |
download | incommon-map-b54a8458d5029b3494165b7430e21b3ae34ecc0c.tar.gz |
Upgrade Rails and add StimulusJS support
Diffstat (limited to 'app/views/sections/show.html.erb')
-rw-r--r-- | app/views/sections/show.html.erb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/views/sections/show.html.erb b/app/views/sections/show.html.erb new file mode 100644 index 0000000..9a69891 --- /dev/null +++ b/app/views/sections/show.html.erb @@ -0,0 +1,11 @@ +<pre><code lang="ecmascript"> +// First, create a section layer on the map, then assign all resource markers to it. +sec<%= @section.id %> = L.layerGroup + +<% @section.resources.each_with_index do |res, i| %> +mk_<%= i %> = L.marker([<%= res.latitude %>, <%= res.longitude %>]).addTo(sec<%= @section.id %>) +<% end %> + +sec<%= @section.id %>.addTo(map) + +</code></pre> |