diff --git a/DRAFT_CHANGELOG.md b/DRAFT_CHANGELOG.md index ca52c1e83..a040a8d86 100644 --- a/DRAFT_CHANGELOG.md +++ b/DRAFT_CHANGELOG.md @@ -6,23 +6,19 @@ ## Summary -Corrections diverses et Maj des extensions +hotfix sur l'enregistrement et l'affichage des labels des KML ## Changelog * [Added] - - Possibilité de charger un KML, GPX ou GeoJSON directement avec les données sans passer par une URL en utilisant l'option *layerOptions:data* (1f3f5ca85638cea5e36440cdefcdb970b221e0f0) - * [Changed] - - Mise à jour des extensions (38bcdb2cba387e186d8f9a8edcdefc207d4017ce) - * [Removed] * [Fixed] - - Fix sur le centrage par geocodage pour Itowns (da5c02c547d81c68bd49d2ff4ea5c4f347b89985) + - option showPointNames selon choix utilisateur (ac712102a27865904bedc01bedb86e68cdc0b155) * [Deprecated] diff --git a/package.json b/package.json index 524b23aa9..f58c8087b 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "geoportal-sdk", - "version": "3.3.21", - "date": "18/01/2023", - "SDK2DVersion": "3.3.21", - "SDK3DVersion": "3.3.21", + "version": "3.3.22", + "date": "02/02/2023", + "SDK2DVersion": "3.3.22", + "SDK3DVersion": "3.3.22", "description": "French Geoportal SDK based on OpenLayers (2D) and iTowns (3D) libraries", "main": "dist/2d/GpSDK2D-src.js, dist/3d/GpSDK3d-src.js", "module": "src/SDK2D.js, src/SDK3D.js", diff --git a/src/OpenLayers/OlMapLayers.js b/src/OpenLayers/OlMapLayers.js index 799555795..cc08a7be6 100644 --- a/src/OpenLayers/OlMapLayers.js +++ b/src/OpenLayers/OlMapLayers.js @@ -329,7 +329,7 @@ OlMap.prototype._addVectorLayer = function (layerObj) { url : this.setProxy(layerOpts.url), format : new Ol.format.KMLExtended({ extractStyles : layerOpts.extractStyles, - showPointNames : false + showPointNames : layerOpts.showPointNames }) }); } else if (layerOpts.data) {