diff --git a/DRAFT_CHANGELOG.md b/DRAFT_CHANGELOG.md index 11d0870d..e0123ac6 100644 --- a/DRAFT_CHANGELOG.md +++ b/DRAFT_CHANGELOG.md @@ -9,6 +9,8 @@ ## Summary +Correctif mineur sur le chargement et l'affichage des styles de flux de tuiles vectorielles + ## Changelog * [Added] @@ -21,6 +23,8 @@ * [Fixed] + - Copie des styles vecteur tuilés dans l'outil d'import (3efee51392414c2858df86bb765bd4a81c8fb2f3) + * [Security] --- @@ -60,6 +64,7 @@ Mise à jour de la bibliothèque d'accès aux services Géoportail. + # Extension Geoportail Itowns, version __VERSION__ **__DATE__** @@ -67,17 +72,12 @@ Mise à jour de la bibliothèque d'accès aux services Géoportail. ## Summary -Mise à jour de la bibliothèque d'accès aux services Géoportail. - - ## Changelog * [Added] * [Changed] - - access-lib 3.3.3 (#369) - * [Deprecated] * [Removed] diff --git a/doc/CHANGELOG-itowns.md b/doc/CHANGELOG-itowns.md index 69ebd881..be9932b1 100644 --- a/doc/CHANGELOG-itowns.md +++ b/doc/CHANGELOG-itowns.md @@ -96,6 +96,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [Extension Geoportail Itowns, version 2.4.2](#extension-geoportail-itowns-version-242) * [Summary](#summary-28) * [Changelog](#changelog-27) +- [Extension Geoportail Itowns, version 2.4.3](#extension-geoportail-itowns-version-243) + * [Summary](#summary-29) + * [Changelog](#changelog-28) @@ -883,3 +886,30 @@ Mise à jour de la version de la bibliothèque d'accès 3.3.2 * [Security] --- +# Extension Geoportail Itowns, version 2.4.3 + +**04/08/2023** +> Release Extension Geoportail itowns + +## Summary + +Mise à jour de la bibliothèque d'accès aux services Géoportail. + + +## Changelog + +* [Added] + +* [Changed] + + - access-lib 3.3.3 (#369) + +* [Deprecated] + +* [Removed] + +* [Fixed] + +* [Security] + +--- diff --git a/package.json b/package.json index 50673c13..e2880cf7 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "geoportal-extensions", "description": "French Geoportal Extensions for OpenLayers, Leaflet and iTowns libraries", - "version": "2.8.4", - "date": "04/08/2023", + "version": "2.8.5", + "date": "28/08/2023", "leafletExtName": "French Geoportal Extension for Leaflet", "leafletExtVersion": "2.3.3", "olExtName": "French Geoportal Extension for OpenLayers", - "olExtVersion": "3.3.3", + "olExtVersion": "3.3.4", "itownsExtName": "French Geoportal Extension for Itowns", "itownsExtVersion": "2.4.3", "main": "dist/leaflet/GpPluginLeaflet.js, dist/openlayers/GpPluginOpenLayers.js, dist/itowns/GpPluginItowns.js", diff --git a/src/OpenLayers/Controls/LayerImport.js b/src/OpenLayers/Controls/LayerImport.js index feeb80e6..e3a904d2 100644 --- a/src/OpenLayers/Controls/LayerImport.js +++ b/src/OpenLayers/Controls/LayerImport.js @@ -1430,7 +1430,7 @@ var LayerImport = (function (Control) { // editeur de styles var editor = new Editor({ target : self._mapBoxResultsListContainer, - style : p.styles, + style : JSON.parse(JSON.stringify(p.styles)), // clone scope : this, events : { "editor:onloaded" : self._onLoadedMapBox, // utile ?