diff --git a/examples/misc_instancing.html b/examples/misc_instancing.html
index a134b9fb3c..05d8bb065e 100644
--- a/examples/misc_instancing.html
+++ b/examples/misc_instancing.html
@@ -103,7 +103,7 @@
// Define the source of the building data : those are vector tiled data from the geoportail.
const buildingsSource = new itowns.VectorTilesSource({
- style: "https://wxs.ign.fr/essentiels/static/vectorTiles/styles/PLAN.IGN/standard.json",
+ style: "https://data.geopf.fr/annexes/ressources/vectorTiles/styles/PLAN.IGN/standard.json",
// We only want to display buildings related data.
filter: (layer) => {
return (
diff --git a/examples/vector_tile_3d_mesh.html b/examples/vector_tile_3d_mesh.html
index 6b1ea81186..b2e7d3611a 100644
--- a/examples/vector_tile_3d_mesh.html
+++ b/examples/vector_tile_3d_mesh.html
@@ -75,7 +75,7 @@
// Define the source of the ColorLayer data : a vector tiled map from the geoportail.
const mapSource = new itowns.VectorTilesSource({
- style: 'https://wxs.ign.fr/essentiels/static/vectorTiles/styles/PLAN.IGN/standard.json',
+ style: "https://data.geopf.fr/annexes/ressources/vectorTiles/styles/PLAN.IGN/standard.json",
// We don't display mountains and parcels related data to ease visualisation. Also, we don't display
// buildings related data as it will be displayed in another Layer.
filter: (layer) => {
@@ -110,7 +110,7 @@
// Define the source of the building data : those are vector tiled data from the geoportail.
const buildingsSource = new itowns.VectorTilesSource({
- style: 'https://wxs.ign.fr/essentiels/static/vectorTiles/styles/PLAN.IGN/standard.json',
+ style: "https://data.geopf.fr/annexes/ressources/vectorTiles/styles/PLAN.IGN/standard.json",
// We only want to display buildings related data.
filter: (layer) => {
return layer['source-layer'].includes('bati_surf')
diff --git a/examples/vector_tile_raster_2d.html b/examples/vector_tile_raster_2d.html
index e19408da11..ceae0cc23d 100644
--- a/examples/vector_tile_raster_2d.html
+++ b/examples/vector_tile_raster_2d.html
@@ -48,7 +48,7 @@
// Defines a VectorTilesSource to load Vector Tiles data from the geoportail
var mvtSource = new itowns.VectorTilesSource({
- style: 'https://wxs.ign.fr/essentiels/static/vectorTiles/styles/PLAN.IGN/standard.json',
+ style: "https://data.geopf.fr/annexes/ressources/vectorTiles/styles/PLAN.IGN/standard.json",
// We don't display mountains related data to ease visualisation
filter: (layer) => !layer['source-layer'].includes('oro_') && !layer['source-layer'].includes('parcellaire'),
});
diff --git a/examples/vector_tile_raster_3d.html b/examples/vector_tile_raster_3d.html
index a753784a0e..1c5e9f9c51 100644
--- a/examples/vector_tile_raster_3d.html
+++ b/examples/vector_tile_raster_3d.html
@@ -49,7 +49,7 @@
// Define a VectorTilesSource to load Vector Tiles data from the geoportail
var mvtSource = new itowns.VectorTilesSource({
- style: 'https://wxs.ign.fr/essentiels/static/vectorTiles/styles/PLAN.IGN/standard.json',
+ style: "https://data.geopf.fr/annexes/ressources/vectorTiles/styles/PLAN.IGN/standard.json",
// We don't display mountains related data to ease visualisation
filter: (layer) => !layer['source-layer'].includes('oro_') && !layer['source-layer'].includes('parcellaire'),
});
diff --git a/examples/view_3d_map.html b/examples/view_3d_map.html
index cd3f4f17cd..11e22fc297 100644
--- a/examples/view_3d_map.html
+++ b/examples/view_3d_map.html
@@ -85,7 +85,7 @@
view,
new itowns.ColorLayer('minimap', {
source: new itowns.VectorTilesSource({
- style: 'https://wxs.ign.fr/essentiels/static/vectorTiles/styles/PLAN.IGN/gris.json',
+ style: "https://data.geopf.fr/annexes/ressources/vectorTiles/styles/PLAN.IGN/standard.json",
// We don't display mountains and plot related data to ease visualisation
filter: (layer) => !layer['source-layer'].includes('oro_')
&& !layer['source-layer'].includes('parcellaire'),
diff --git a/examples/view_3d_mns_map.html b/examples/view_3d_mns_map.html
index dcc600e366..32b9b496ec 100644
--- a/examples/view_3d_mns_map.html
+++ b/examples/view_3d_mns_map.html
@@ -84,7 +84,7 @@
view,
new itowns.ColorLayer('minimap', {
source: new itowns.VectorTilesSource({
- style: 'https://wxs.ign.fr/essentiels/static/vectorTiles/styles/PLAN.IGN/gris.json',
+ style: "https://data.geopf.fr/annexes/ressources/vectorTiles/styles/PLAN.IGN/standard.json",
// We don't display mountains and plot related data to ease visualisation
filter: (layer) => !layer['source-layer'].includes('oro_')
&& !layer['source-layer'].includes('parcellaire'),
diff --git a/examples/widgets_minimap.html b/examples/widgets_minimap.html
index 6ce99f6cd4..74d53f8116 100644
--- a/examples/widgets_minimap.html
+++ b/examples/widgets_minimap.html
@@ -88,7 +88,7 @@
// Create a ColorLayer that shall be displayed on the minimap.
const minimapColorLayer = new itowns.ColorLayer('minimap', {
source: new itowns.VectorTilesSource({
- style: 'https://wxs.ign.fr/essentiels/static/vectorTiles/styles/PLAN.IGN/standard.json',
+ style: "https://data.geopf.fr/annexes/ressources/vectorTiles/styles/PLAN.IGN/standard.json",
// We don't display mountains and plot related data to ease visualisation
filter: (layer) => !layer['source-layer'].includes('oro_')
&& !layer['source-layer'].includes('parcellaire'),