Skip to content

Commit

Permalink
release-3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elias75015 committed Apr 4, 2024
2 parents 3f29c85 + 4e8e275 commit 82e8828
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 25 deletions.
13 changes: 5 additions & 8 deletions DRAFT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,21 @@
## Summary

Seconde et ultime release adaptative à la Géoplateforme : le SDK Géoportail devient le SDK Web Géoplateforme.
L'ensemble des widgets et fonctionnalités du SDK Web Géoplateforme utilise les services de la Géoplateforme avec cette release 3.5.0
.
Correction du calcul d'itinéraire et de l'affichage des tuiles vectorielles

## Changelog

* [Added]

* [Changed]

- branchement au service d'altimétrie de la Géoplateforme (https://github.com/IGNF/geoportal-sdk/releases/tag/3.5.0-beta4)
- ajout possible de couches à accès restreint avec clé personnelle via un fichier de configuration custom (https://github.com/IGNF/geoportal-sdk/releases/tag/3.5.0-beta3)
- utilisation du service de Geocodage de la Geoplateforme (https://github.com/IGNF/geoportal-sdk/releases/tag/3.5.0-beta2)
- Utilisation des services de diffusion de la Géoplateforme pour l'ajout de couche simplifié via le SDK. Le paramètre apiKey devient facultatif : s'il est non spécifié, la configuration de toutes les données est récupérée. L'ajout de couches de type "geoportalLayer" est branché sur les services de diffusion de la Géoplateforme (https://github.com/IGNF/geoportal-sdk/releases/tag/3.5.0-beta)

* [Removed]

* [Fixed]

- corrige tileGrid Vector Tile en 512px (16e7bd521012c52de10384a4a15b8b3889228d4b)
- widget itineraire utilise ressource bdtopo-valhalla dans le cas d'un itinéraire pieton en mode fastest (b80d384e72f6a752930a8c13a52bd7db09766351)

* [Deprecated]

* [Security]
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "geoportal-sdk",
"version": "3.5.0",
"date": "19/03/2024",
"SDK2DVersion": "3.5.0",
"SDK3DVersion": "3.5.0",
"version": "3.5.1",
"date": "04/04/2024",
"SDK2DVersion": "3.5.1",
"SDK3DVersion": "3.5.1",
"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",
Expand Down Expand Up @@ -74,7 +74,7 @@
"expose-loader": "^0.7.5",
"fs-extra": "^9.0.0",
"geoportal-extensions-itowns": "2.5.0",
"geoportal-extensions-openlayers": "3.4.0",
"geoportal-extensions-openlayers": "3.4.1",
"handlebars": "^4.7.5",
"handlebars-layouts": "^3.1.4",
"html-webpack-plugin": "^4.0.4",
Expand Down
24 changes: 12 additions & 12 deletions src/OpenLayers/OlMapVectorTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -1221,12 +1221,12 @@ OlMap.prototype._addMapBoxLayer = function (layerObj) {
// overlaps
// projection
format : vectorFormat,
tileGrid : olCreateXYZTileGrid({ // TODO scheme tms ?
extent : _glSource.bounds, // [minx, miny, maxx, maxy]
maxZoom : _glSource.maxzoom || 22,
minZoom : _glSource.minzoom || 1,
tileSize : _glSource.tileSize || 256
}),
// tileGrid : olCreateXYZTileGrid({ // TODO scheme tms ?
// extent : _glSource.bounds, // [minx, miny, maxx, maxy]
// maxZoom : _glSource.maxzoom || 22,
// minZoom : _glSource.minzoom || 1,
// tileSize : _glSource.tileSize || 256
// }),
urls : _glTiles
});
vectorSource._title = _title;
Expand Down Expand Up @@ -1311,12 +1311,12 @@ OlMap.prototype._addMapBoxLayer = function (layerObj) {
// INFO
// on supprime la grille pour forcer l'utilisation par defaut des tuiles en 512
// sur du vecteur tuilé
tileGrid : olCreateXYZTileGrid({ // TODO scheme tms ?
extent : _glSource.bounds, // [minx, miny, maxx, maxy]
maxZoom : _glSource.maxzoom || 22,
minZoom : _glSource.minzoom || 1,
tileSize : _glSource.tileSize || 256
}),
// tileGrid : olCreateXYZTileGrid({ // TODO scheme tms ?
// extent : _glSource.bounds, // [minx, miny, maxx, maxy]
// maxZoom : _glSource.maxzoom || 22,
// minZoom : _glSource.minzoom || 1,
// tileSize : _glSource.tileSize || 256
// }),
urls : tiles
});
vectorSource._title = _title;
Expand Down

0 comments on commit 82e8828

Please sign in to comment.