diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-06-21 21:26:10 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-06-21 21:28:39 +0200 |
commit | c97cde3dc0385830c8fe36ca99212310e4b15b70 (patch) | |
tree | 935f6b2c2ff83e749a185cb90ce9f57f866b0130 | |
parent | 2f59ad77d95ef7d7e6785fee6a784ae814aaa276 (diff) | |
download | Ishtar-c97cde3dc0385830c8fe36ca99212310e4b15b70.tar.bz2 Ishtar-c97cde3dc0385830c8fe36ca99212310e4b15b70.zip |
🐛 JS: fix TrackPositionControl with https
-rw-r--r-- | changelog/en/changelog_2022-06-15.md | 6 | ||||
-rw-r--r-- | changelog/fr/changelog_2023-01-25.md | 5 | ||||
-rw-r--r-- | ishtar_common/templates/gis/openlayers-osm.html | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/changelog/en/changelog_2022-06-15.md b/changelog/en/changelog_2022-06-15.md index d7d39f2da..a23d798d2 100644 --- a/changelog/en/changelog_2022-06-15.md +++ b/changelog/en/changelog_2022-06-15.md @@ -1,4 +1,4 @@ -v4.0.49 - 2023- +v4.0.49 - 2023-06-21 -------------------- ### Features/improvements ### @@ -6,6 +6,10 @@ v4.0.49 - 2023- - Sheet: display spatial reference system with coordinates of points +### Technical ### +- JS: fix TrackPositionControl with https + + v4.0.48 - 2023-06-08 -------------------- diff --git a/changelog/fr/changelog_2023-01-25.md b/changelog/fr/changelog_2023-01-25.md index c1bbcf19d..ccc687e1d 100644 --- a/changelog/fr/changelog_2023-01-25.md +++ b/changelog/fr/changelog_2023-01-25.md @@ -5,6 +5,11 @@ v4.0.49 - 2023- - Amélioration de l'affichage du journal de modifications - Fiche : affichage dus système de référence spatiale avec les coordonnées des points + +### Technique ### +- JS : correction TrackPositionControl avec le https + + v4.0.48 - 2023-06-08 -------------------- diff --git a/ishtar_common/templates/gis/openlayers-osm.html b/ishtar_common/templates/gis/openlayers-osm.html index 0c4391a0f..90ccbb0e3 100644 --- a/ishtar_common/templates/gis/openlayers-osm.html +++ b/ishtar_common/templates/gis/openlayers-osm.html @@ -23,7 +23,7 @@ ]); if (location.protocol == 'https:'){ map_controls.push( - new TrackPositionControl({map_id: map_id}) + new TrackPositionControl({map_id: options['map_id']}) ); } options["controls"] = map_controls; |