Move notice to bottom

This commit is contained in:
Midgard 2020-08-01 23:53:03 +02:00
parent 0b6d9e9349
commit 74ee5b751d
Signed by: midgard
GPG Key ID: 511C112F1331BBB4
1 changed files with 4 additions and 4 deletions

View File

@ -152,10 +152,6 @@ $(document).ready(function() {
}
});
var notice = new SimpleControl("#notice-template", "notice", {
position: "topleft"
}).addTo(map);
var info = new SimpleControl("#info-template", "info", {
position: "topright"
}).addTo(map);
@ -168,5 +164,9 @@ $(document).ready(function() {
position: "bottomright"
}).addTo(map);
var notice = new SimpleControl("#notice-template", "notice", {
position: "bottomleft"
}).addTo(map);
L.control.zoom().addTo(map);
});