Skip to content

Commit

Permalink
release ol-3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
elias75015 committed Aug 28, 2023
2 parents bd07a71 + e870419 commit 97863a8
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 9 deletions.
10 changes: 5 additions & 5 deletions DRAFT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
## Summary

Correctif mineur sur le chargement et l'affichage des styles de flux de tuiles vectorielles

## Changelog

* [Added]
Expand All @@ -21,6 +23,8 @@

* [Fixed]

- Copie des styles vecteur tuilés dans l'outil d'import (3efee51392414c2858df86bb765bd4a81c8fb2f3)

* [Security]

---
Expand Down Expand Up @@ -60,24 +64,20 @@ Mise à jour de la bibliothèque d'accès aux services Géoportail.




# Extension Geoportail Itowns, version __VERSION__

**__DATE__**
> 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]
Expand Down
30 changes: 30 additions & 0 deletions doc/CHANGELOG-itowns.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<!-- tocstop -->

Expand Down Expand Up @@ -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]

---
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/OpenLayers/Controls/LayerImport.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?
Expand Down

0 comments on commit 97863a8

Please sign in to comment.