From 49025ff0bc9beced66944f9cdeff57b3c3e82edc Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 12 Oct 2022 10:46:59 +0200 Subject: [PATCH] [CQ Award] Added legend on map --- application/views/awards/cq/index.php | 26 ++++++++++++++++++++++++++ assets/js/sections/cqmap.js | 15 +++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/application/views/awards/cq/index.php b/application/views/awards/cq/index.php index 0aaf7cd2..f76d832c 100644 --- a/application/views/awards/cq/index.php +++ b/application/views/awards/cq/index.php @@ -3,6 +3,32 @@ height: calc(100vh - 430px) !important; max-height: 900px !important; } +/*Legend specific*/ +.legend { + padding: 6px 8px; + font: 14px Arial, Helvetica, sans-serif; + background: white; + background: rgba(255, 255, 255, 0.8); + line-height: 24px; + color: #555; +} +.legend h4 { + text-align: center; + font-size: 16px; + margin: 2px 12px 8px; + color: #777; +} +.legend span { + position: relative; + bottom: 3px; +} +.legend i { + width: 18px; + height: 18px; + float: left; + margin: 0 8px 0 0; + opacity: 0.7; +}
diff --git a/assets/js/sections/cqmap.js b/assets/js/sections/cqmap.js index d24d822f..5e920ec2 100644 --- a/assets/js/sections/cqmap.js +++ b/assets/js/sections/cqmap.js @@ -153,6 +153,21 @@ function load_cq_map2(data) { } ).addTo(map).on('click', onClick); } + + /*Legend specific*/ + var legend = L.control({ position: "topright" }); + + legend.onAdd = function(map) { + var div = L.DomUtil.create("div", "legend"); + div.innerHTML += "

Colors

"; + div.innerHTML += 'Confirmed
'; + div.innerHTML += 'Worked not confirmed
'; + div.innerHTML += 'Not worked
'; + return div; + }; + + legend.addTo(map); + map.setView([20, 0], 2); }