diff --git a/.github/workflows/release-leaflet.yml b/.github/workflows/release-leaflet.yml
index bc2aaf5f..480d948d 100644
--- a/.github/workflows/release-leaflet.yml
+++ b/.github/workflows/release-leaflet.yml
@@ -282,7 +282,7 @@ jobs:
- name: Get the version
id: get_version
- run: echo ::set-output name=VERSION::$(echo ${GITHUB_REF##*/})
+ run: echo ::set-output name=VERSION::$(echo ${GITHUB_REF##*/} | cut -d - -f2)
- name: Update package.json
run: |
diff --git a/.github/workflows/release-ol.yml b/.github/workflows/release-ol.yml
index d26dc451..7d59ab62 100644
--- a/.github/workflows/release-ol.yml
+++ b/.github/workflows/release-ol.yml
@@ -284,7 +284,7 @@ jobs:
- name: Get the version
id: get_version
- run: echo ::set-output name=VERSION::$(echo ${GITHUB_REF##*/})
+ run: echo ::set-output name=VERSION::$(echo ${GITHUB_REF##*/} | cut -d - -f2)
- name: Update package.json
run: |
diff --git a/DRAFT_CHANGELOG.md b/DRAFT_CHANGELOG.md
index 47c67148..4d8f0dbc 100644
--- a/DRAFT_CHANGELOG.md
+++ b/DRAFT_CHANGELOG.md
@@ -7,14 +7,18 @@
## Summary
-- Ajout d'exemples avec l'appel de *Gp.Services.getConfig()*
+Ajout d'exemples avec l'appel de *Gp.Services.getConfig()* et ajout de methodes de nettoyage sur les widgets de calcul
## Changelog
* [Added]
+ - ajout de méthodes de nettoyage pour les controles d'itineraire, d'isochrone, et de profil alti
+
* [Changed]
+ - Ajout d'exemples avec l'appel de *Gp.Services.getConfig()*
+
* [Deprecated]
* [Removed]
@@ -27,6 +31,7 @@
+
# Extension Geoportail Leaflet, version __VERSION__
**__DATE__**
@@ -34,7 +39,7 @@
## Summary
-- Ajout d'exemples avec l'appel de *Gp.Services.getConfig()*
+Mise à jour de la version de la bibliothèque d'accès 3.3.2
## Changelog
@@ -42,14 +47,14 @@
* [Changed]
+ - MaJ bibliothèque d'accès 3.3.2
+
* [Deprecated]
* [Removed]
* [Fixed]
- - Fix sur les exemples avec un appel de *Gp.Services.getConfig()* (59efde637b423f835f4d50175c2dd83849faf5d1)
-
* [Security]
---
@@ -63,12 +68,16 @@
## Summary
+Mise à jour de la version de la bibliothèque d'accès 3.3.2
+
## Changelog
* [Added]
* [Changed]
+ - MaJ bibliothèque d'accès 3.3.2
+
* [Deprecated]
* [Removed]
diff --git a/build/scripts/release/geoportal-extensions-openlayers-3.3.2.tgz b/build/scripts/release/geoportal-extensions-openlayers-3.3.2.tgz
new file mode 100644
index 00000000..e964ac81
Binary files /dev/null and b/build/scripts/release/geoportal-extensions-openlayers-3.3.2.tgz differ
diff --git a/build/scripts/release/package-itowns.json b/build/scripts/release/package-itowns.json
index 2d23cc38..d9f92d0b 100644
--- a/build/scripts/release/package-itowns.json
+++ b/build/scripts/release/package-itowns.json
@@ -1,45 +1,45 @@
{
- "author" : "IGNF",
- "name" : "geoportal-extensions-itowns",
- "date" : "07/06/2023",
- "scripts" : {},
"homepage" : "https://geoservices.ign.fr/documentation/utilisation_web/extension-itowns.html",
- "bundleDependencies" : [],
- "devDependencies" : {},
- "dependencies" : {
- "node-fetch" : "^2.6.1",
- "three" : "0.137.5",
- "sortablejs" : "1.14.0",
- "geoportal-access-lib" : "3.3.1",
- "xmldom" : "^0.1.27",
- "loglevel" : "1.6.7",
- "proj4" : "2.7.5",
- "itowns" : "2.38.2"
+ "repository" : {
+ "url" : "https://github.com/IGNF/geoportal-extensions.git",
+ "type" : "git"
},
+ "description" : "French Geoportal Extensions for iTowns",
+ "date" : "01/06/2023",
+ "directories" : {},
+ "scripts" : {},
+ "name" : "geoportal-extensions-itowns",
+ "version" : "2.3.11",
+ "license" : "CECILL-B",
+ "bugs" : {},
"keywords" : [
"geoportail",
"plugin",
"javascript",
"Itowns"
],
+ "bundleDependencies" : [],
+ "peerDependencies" : {},
+ "types" : "src/Itowns/index.d.ts",
"main" : "dist/GpPluginItowns-src.js",
+ "module" : "src/Itowns/index.js",
+ "author" : "IGNF",
+ "devDependencies" : {},
+ "dependencies" : {
+ "loglevel" : "1.6.7",
+ "geoportal-access-lib" : "3.3.1",
+ "xmldom" : "^0.1.27",
+ "sortablejs" : "1.14.0",
+ "node-fetch" : "^2.6.1",
+ "proj4" : "2.7.5",
+ "itowns" : "2.38.2",
+ "three" : "0.137.5"
+ },
"files" : [
"dist/",
"src/",
"LICENCE.md",
"README.md",
"package.json"
- ],
- "bugs" : {},
- "license" : "CECILL-B",
- "version" : "2.4.1",
- "directories" : {},
- "types" : "src/Itowns/index.d.ts",
- "repository" : {
- "url" : "https://github.com/IGNF/geoportal-extensions.git",
- "type" : "git"
- },
- "peerDependencies" : {},
- "module" : "src/Itowns/index.js",
- "description" : "French Geoportal Extensions for iTowns"
+ ]
}
diff --git a/build/scripts/release/package-leaflet.json b/build/scripts/release/package-leaflet.json
index e41891d9..63056106 100644
--- a/build/scripts/release/package-leaflet.json
+++ b/build/scripts/release/package-leaflet.json
@@ -1,10 +1,20 @@
{
- "name" : "geoportal-extensions-leaflet",
"repository" : {
"url" : "https://github.com/IGNF/geoportal-extensions.git",
"type" : "git"
},
- "description" : "French Geoportal Extension for Leaflet",
+ "date" : "01/06/2023",
+ "bugs" : {},
+ "keywords" : [
+ "geoportail",
+ "plugin",
+ "javascript",
+ "leaflet",
+ "publish"
+ ],
+ "homepage" : "https://geoservices.ign.fr/documentation/utilisation_web/extension-leaflet.html",
+ "types" : "src/Leaflet/index.d.ts",
+ "devDependencies" : {},
"files" : [
"dist/",
"src/",
@@ -12,35 +22,25 @@
"README.md",
"package.json"
],
- "directories" : {},
+ "description" : "French Geoportal Extension for Leaflet",
+ "name" : "geoportal-extensions-leaflet",
+ "main" : "dist/GpPluginLeaflet-src.js",
+ "version" : "2.2.9",
"scripts" : {},
+ "peerDependencies" : {},
+ "directories" : {},
+ "license" : "CECILL-B",
+ "module" : "src/Leaflet/index.js",
"dependencies" : {
"sortablejs" : "1.8.4",
- "loglevel" : "1.6.6",
- "proj4leaflet" : "1.0.2",
- "leaflet-draw" : "1.0.4",
- "xmldom" : "^0.1.27",
"node-fetch" : "^2.6.1",
+ "xmldom" : "^0.1.27",
+ "proj4leaflet" : "1.0.2",
"leaflet" : "1.7.1",
- "proj4" : "2.7.5",
- "geoportal-access-lib" : "3.3.1"
+ "leaflet-draw" : "1.0.4",
+ "geoportal-access-lib" : "3.3.1",
+ "loglevel" : "1.6.6",
+ "proj4" : "2.7.5"
},
- "bugs" : {},
- "license" : "CECILL-B",
- "peerDependencies" : {},
- "module" : "src/Leaflet/index.js",
- "version" : "2.3.1",
- "keywords" : [
- "geoportail",
- "plugin",
- "javascript",
- "leaflet",
- "publish"
- ],
- "devDependencies" : {},
- "bundleDependencies" : [],
- "main" : "dist/GpPluginLeaflet-src.js",
- "types" : "src/Leaflet/index.d.ts",
- "date" : "07/06/2023",
- "homepage" : "https://geoservices.ign.fr/documentation/utilisation_web/extension-leaflet.html"
+ "bundleDependencies" : []
}
diff --git a/build/scripts/release/package-openlayers.json b/build/scripts/release/package-openlayers.json
index 25aded18..2c29b633 100644
--- a/build/scripts/release/package-openlayers.json
+++ b/build/scripts/release/package-openlayers.json
@@ -1,41 +1,41 @@
{
- "scripts" : {},
- "bugs" : {},
- "version" : "3.3.1",
+ "directories" : {},
+ "version" : "3.3.2",
+ "types" : "src/OpenLayers/index.d.ts",
"devDependencies" : {},
- "license" : "CECILL-B",
+ "scripts" : {},
+ "module" : "src/OpenLayers/index.js",
+ "files" : [
+ "dist/",
+ "src/",
+ "LICENCE.md",
+ "README.md",
+ "package.json"
+ ],
+ "name" : "geoportal-extensions-openlayers",
+ "peerDependencies" : {},
"keywords" : [
"geoportail",
"plugin",
"javascript",
"OpenLayers"
],
- "name" : "geoportal-extensions-openlayers",
+ "bugs" : {},
"repository" : {
"type" : "git",
"url" : "https://github.com/IGNF/geoportal-extensions.git"
},
- "files" : [
- "dist/",
- "src/",
- "LICENCE.md",
- "README.md",
- "package.json"
- ],
- "directories" : {},
- "types" : "src/OpenLayers/index.d.ts",
- "peerDependencies" : {},
- "module" : "src/OpenLayers/index.js",
- "date" : "07/06/2023",
"dependencies" : {
- "@mapbox/mapbox-gl-style-spec" : "13.20.1",
+ "sortablejs" : "1.14.0",
"xmldom" : "^0.1.27",
- "loglevel" : "1.6.6",
+ "geoportal-access-lib" : "3.3.2",
+ "ol" : "6.9.0",
"eventbusjs" : "0.2.0",
- "geoportal-access-lib" : "3.3.1",
- "sortablejs" : "1.14.0",
+ "loglevel" : "1.6.6",
"node-fetch" : "^2.6.1",
- "ol" : "6.9.0",
- "proj4" : "2.7.5"
- }
+ "proj4" : "2.7.5",
+ "@mapbox/mapbox-gl-style-spec" : "13.20.1"
+ },
+ "date" : "21/07/2023",
+ "license" : "CECILL-B"
}
diff --git a/doc/CHANGELOG-leaflet.md b/doc/CHANGELOG-leaflet.md
index 3c436593..5939106f 100644
--- a/doc/CHANGELOG-leaflet.md
+++ b/doc/CHANGELOG-leaflet.md
@@ -95,6 +95,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Extension Geoportail Leaflet, version 2.3.1](#extension-geoportail-leaflet-version-231)
* [Summary](#summary-27)
* [Changelog](#changelog-24)
+- [Extension Geoportail Leaflet, version 2.3.2](#extension-geoportail-leaflet-version-232)
+ * [Summary](#summary-28)
+ * [Changelog](#changelog-25)
@@ -932,3 +935,29 @@ var maCoucheGeoportail = L.geoportalLayer.WMTS({
* [Security]
---
+# Extension Geoportail Leaflet, version 2.3.2
+
+**12/06/2023**
+> Release Extension Geoportail leaflet
+
+## Summary
+
+- Ajout d'exemples avec l'appel de *Gp.Services.getConfig()*
+
+## Changelog
+
+* [Added]
+
+* [Changed]
+
+* [Deprecated]
+
+* [Removed]
+
+* [Fixed]
+
+ - Fix sur les exemples avec un appel de *Gp.Services.getConfig()* (59efde637b423f835f4d50175c2dd83849faf5d1)
+
+* [Security]
+
+---
diff --git a/package.json b/package.json
index ca74d0f1..1ef3fb88 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.2",
- "date": "12/06/2023",
+ "version": "2.8.3",
+ "date": "21/07/2023",
"leafletExtName": "French Geoportal Extension for Leaflet",
"leafletExtVersion": "2.3.2",
"olExtName": "French Geoportal Extension for OpenLayers",
- "olExtVersion": "3.3.1",
+ "olExtVersion": "3.3.2",
"itownsExtName": "French Geoportal Extension for Itowns",
"itownsExtVersion": "2.4.1",
"main": "dist/leaflet/GpPluginLeaflet.js, dist/openlayers/GpPluginOpenLayers.js, dist/itowns/GpPluginItowns.js",
@@ -73,7 +73,7 @@
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "13.20.1",
"eventbusjs": "0.2.0",
- "geoportal-access-lib": "3.3.1",
+ "geoportal-access-lib": "3.3.2",
"itowns": "2.38.2",
"leaflet": "1.7.1",
"leaflet-draw": "1.0.4",
diff --git a/samples-src/pages/openlayers/Isocurve/pages-ol-isocurve-bundle-multi-compute.html b/samples-src/pages/openlayers/Isocurve/pages-ol-isocurve-bundle-multi-compute.html
new file mode 100644
index 00000000..6656d51e
--- /dev/null
+++ b/samples-src/pages/openlayers/Isocurve/pages-ol-isocurve-bundle-multi-compute.html
@@ -0,0 +1,59 @@
+{{#extend "ol-sample-bundle-multikeys-layout"}}
+
+{{#content "head"}}
+
Sample openlayers Isocurve
+{{/content}}
+
+{{#content "style"}}
+
+{{/content}}
+
+{{#content "body"}}
+ Ajout du widget de calcul isochrone, avec les options par défaut
+
+
+
+
+{{/content}}
+
+{{#content "js"}}
+
+{{/content}}
+{{/extend}}
diff --git a/samples-src/pages/openlayers/Route/pages-ol-route-bundle-multi-compute.html b/samples-src/pages/openlayers/Route/pages-ol-route-bundle-multi-compute.html
new file mode 100644
index 00000000..b4bf4f4f
--- /dev/null
+++ b/samples-src/pages/openlayers/Route/pages-ol-route-bundle-multi-compute.html
@@ -0,0 +1,59 @@
+{{#extend "ol-sample-bundle-multikeys-layout"}}
+
+{{#content "head"}}
+ Sample openlayers Route
+{{/content}}
+
+{{#content "style"}}
+
+{{/content}}
+
+{{#content "body"}}
+ Ajout du widget de calcul d'itineraire, avec les options par défaut
+
+
+
+
+{{/content}}
+
+{{#content "js"}}
+
+{{/content}}
+{{/extend}}
diff --git a/samples-src/resources/data/geojson/export-profil.geojson b/samples-src/resources/data/geojson/export-profil.geojson
index 418bafe2..e01bc678 100644
--- a/samples-src/resources/data/geojson/export-profil.geojson
+++ b/samples-src/resources/data/geojson/export-profil.geojson
@@ -1 +1,1836 @@
-{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"LineString","coordinates":[[2.4352744768852865,48.96458336001166],[2.3539666836501008,48.72736748173057]]},"properties":null}],"geoportail:compute":{"type":"elevationpath","greaterSlope":12,"meanSlope":2,"distancePlus":13414.310931585807,"distanceMinus":13520.002115154157,"ascendingElevation":240.83000000000015,"descendingElevation":-202.26,"altMin":"28,05","altMax":"120,08","distance":27039.93759507291,"unit":"m","points":[{"z":46.33,"lon":2.4353,"lat":48.9646,"acc":2.5,"dist":0,"slope":0},{"z":45.67,"lon":2.435,"lat":48.9637,"acc":2.5,"dist":105.62223884135284,"slope":1,"color":"#00B798"},{"z":44.58,"lon":2.4346,"lat":48.9627,"acc":2.5,"dist":211.24533567735983,"slope":1,"color":"#00B798"},{"z":43.43,"lon":2.4343,"lat":48.9618,"acc":2.5,"dist":316.86744339158764,"slope":1,"color":"#00B798"},{"z":41.84,"lon":2.434,"lat":48.9609,"acc":2.5,"dist":422.490409088714,"slope":2,"color":"#00B798"},{"z":40.94,"lon":2.4337,"lat":48.96,"acc":2.5,"dist":528.1133092069166,"slope":1,"color":"#00B798"},{"z":39.63,"lon":2.4334,"lat":48.959,"acc":2.5,"dist":633.7361437393077,"slope":1,"color":"#00B798"},{"z":39.13,"lon":2.433,"lat":48.9581,"acc":2.5,"dist":739.3587516663466,"slope":0,"color":"#00B798"},{"z":39.47,"lon":2.4327,"lat":48.9572,"acc":2.5,"dist":844.9814550067377,"slope":0,"color":"#00B798"},{"z":39.66,"lon":2.4324,"lat":48.9562,"acc":2.5,"dist":950.603931726924,"slope":0,"color":"#00B798"},{"z":39.89,"lon":2.4321,"lat":48.9553,"acc":2.5,"dist":1056.2263428342671,"slope":0,"color":"#00B798"},{"z":40.44,"lon":2.4318,"lat":48.9544,"acc":2.5,"dist":1161.8497729023165,"slope":1,"color":"#00B798"},{"z":41.35,"lon":2.4314,"lat":48.9535,"acc":2.5,"dist":1267.4720527654492,"slope":1,"color":"#00B798"},{"z":42.3,"lon":2.4311,"lat":48.9525,"acc":2.5,"dist":1373.0951905630232,"slope":1,"color":"#00B798"},{"z":42.74,"lon":2.4308,"lat":48.9516,"acc":2.5,"dist":1478.717339154242,"slope":0,"color":"#00B798"},{"z":43.03,"lon":2.4305,"lat":48.9507,"acc":2.5,"dist":1584.3403456684318,"slope":0,"color":"#00B798"},{"z":43.8,"lon":2.4302,"lat":48.9498,"acc":2.5,"dist":1689.963286532057,"slope":1,"color":"#00B798"},{"z":44.46,"lon":2.4299,"lat":48.9488,"acc":2.5,"dist":1795.5861617356095,"slope":1,"color":"#00B798"},{"z":44.67,"lon":2.4295,"lat":48.9479,"acc":2.5,"dist":1901.2088102630175,"slope":0,"color":"#00B798"},{"z":45.66,"lon":2.4292,"lat":48.947,"acc":2.5,"dist":2006.831554131651,"slope":1,"color":"#00B798"},{"z":45.49,"lon":2.4289,"lat":48.9461,"acc":2.5,"dist":2112.4551558960875,"slope":0,"color":"#00B798"},{"z":46.03,"lon":2.4286,"lat":48.9451,"acc":2.5,"dist":2218.077607389068,"slope":1,"color":"#00B798"},{"z":46.2,"lon":2.4283,"lat":48.9442,"acc":2.5,"dist":2323.7010777805494,"slope":0,"color":"#00B798"},{"z":45.93,"lon":2.4279,"lat":48.9433,"acc":2.5,"dist":2429.3233978843155,"slope":0,"color":"#00B798"},{"z":46.19,"lon":2.4276,"lat":48.9423,"acc":2.5,"dist":2534.9465758610827,"slope":0,"color":"#00B798"},{"z":39.78,"lon":2.4273,"lat":48.9414,"acc":2.5,"dist":2640.5698491426765,"slope":6,"color":"#00B798"},{"z":45.74,"lon":2.427,"lat":48.9405,"acc":2.5,"dist":2746.1928956928555,"slope":6,"color":"#00B798"},{"z":42.84,"lon":2.4267,"lat":48.9396,"acc":2.5,"dist":2851.8158765210187,"slope":3,"color":"#00B798"},{"z":39.07,"lon":2.4263,"lat":48.9386,"acc":2.5,"dist":2957.438791617658,"slope":4,"color":"#00B798"},{"z":39.16,"lon":2.426,"lat":48.9377,"acc":2.5,"dist":3063.0614799640653,"slope":0,"color":"#00B798"},{"z":41.41,"lon":2.4257,"lat":48.9368,"acc":2.5,"dist":3168.6853481800567,"slope":2,"color":"#00B798"},{"z":43.34,"lon":2.4251,"lat":48.9349,"acc":2.5,"dist":3379.931480731123,"slope":1,"color":"#00B798"},{"z":44.35,"lon":2.4248,"lat":48.934,"acc":2.5,"dist":3485.553906065343,"slope":1,"color":"#00B798"},{"z":44.45,"lon":2.4244,"lat":48.9331,"acc":2.5,"dist":3591.1773502316187,"slope":0,"color":"#00B798"},{"z":44.9,"lon":2.4241,"lat":48.9322,"acc":2.5,"dist":3696.8005676086514,"slope":0,"color":"#00B798"},{"z":44.46,"lon":2.4238,"lat":48.9312,"acc":2.5,"dist":3802.423880217659,"slope":0,"color":"#00B798"},{"z":43.57,"lon":2.4235,"lat":48.9303,"acc":2.5,"dist":3908.046966023273,"slope":1,"color":"#00B798"},{"z":48.15,"lon":2.4232,"lat":48.9294,"acc":2.5,"dist":4013.6699860354997,"slope":4,"color":"#00B798"},{"z":49.28,"lon":2.4228,"lat":48.9284,"acc":2.5,"dist":4119.292940244847,"slope":1,"color":"#00B798"},{"z":43.47,"lon":2.4225,"lat":48.9275,"acc":2.5,"dist":4224.91691325337,"slope":6,"color":"#00B798"},{"z":42.59,"lon":2.4222,"lat":48.9266,"acc":2.5,"dist":4330.539574825868,"slope":1,"color":"#00B798"},{"z":42.81,"lon":2.4219,"lat":48.9257,"acc":2.5,"dist":4436.163255186841,"slope":0,"color":"#00B798"},{"z":42.8,"lon":2.4216,"lat":48.9247,"acc":2.5,"dist":4541.78578510748,"slope":0,"color":"#00B798"},{"z":42.58,"lon":2.4212,"lat":48.9238,"acc":2.5,"dist":4647.409333806564,"slope":0,"color":"#00B798"},{"z":41.46,"lon":2.4209,"lat":48.9229,"acc":2.5,"dist":4753.032816665108,"slope":1,"color":"#00B798"},{"z":41.72,"lon":2.4206,"lat":48.922,"acc":2.5,"dist":4858.656233676394,"slope":0,"color":"#00B798"},{"z":41.81,"lon":2.42,"lat":48.9201,"acc":2.5,"dist":5069.902548102409,"slope":0,"color":"#00B798"},{"z":42.75,"lon":2.4197,"lat":48.9192,"acc":2.5,"dist":5175.526852148913,"slope":1,"color":"#00B798"},{"z":42.27,"lon":2.4193,"lat":48.9183,"acc":2.5,"dist":5281.149683677052,"slope":0,"color":"#00B798"},{"z":43.12,"lon":2.419,"lat":48.9173,"acc":2.5,"dist":5386.773694959015,"slope":1,"color":"#00B798"},{"z":42.77,"lon":2.4187,"lat":48.9164,"acc":2.5,"dist":5492.396555734283,"slope":0,"color":"#00B798"},{"z":40.02,"lon":2.4184,"lat":48.9155,"acc":2.5,"dist":5598.020274223431,"slope":3,"color":"#00B798"},{"z":42.36,"lon":2.4181,"lat":48.9146,"acc":2.5,"dist":5703.643926813584,"slope":2,"color":"#00B798"},{"z":42.48,"lon":2.4174,"lat":48.9127,"acc":2.5,"dist":5914.891034270614,"slope":0,"color":"#00B798"},{"z":42.26,"lon":2.4171,"lat":48.9118,"acc":2.5,"dist":6020.514489124057,"slope":0,"color":"#00B798"},{"z":43.33,"lon":2.4168,"lat":48.9108,"acc":2.5,"dist":6126.13771703769,"slope":1,"color":"#00B798"},{"z":43.49,"lon":2.4161,"lat":48.909,"acc":2.5,"dist":6337.3850596897155,"slope":0,"color":"#00B798"},{"z":45.59,"lon":2.4155,"lat":48.9071,"acc":2.5,"dist":6548.632138562224,"slope":1,"color":"#00B798"},{"z":47.7,"lon":2.4149,"lat":48.9053,"acc":2.5,"dist":6759.8798772203845,"slope":1,"color":"#00B798"},{"z":46.24,"lon":2.4146,"lat":48.9044,"acc":2.5,"dist":6865.50356708921,"slope":1,"color":"#00B798"},{"z":44.9,"lon":2.4142,"lat":48.9034,"acc":2.5,"dist":6971.127190981787,"slope":1,"color":"#00B798"},{"z":44.22,"lon":2.4139,"lat":48.9025,"acc":2.5,"dist":7076.750748888653,"slope":1,"color":"#00B798"},{"z":45.44,"lon":2.4136,"lat":48.9016,"acc":2.5,"dist":7182.374240805843,"slope":1,"color":"#00B798"},{"z":52.57,"lon":2.4133,"lat":48.9007,"acc":2.5,"dist":7287.997505710742,"slope":7,"color":"#00B798"},{"z":51.58,"lon":2.413,"lat":48.8997,"acc":2.5,"dist":7393.621950265311,"slope":1,"color":"#00B798"},{"z":51.4,"lon":2.4126,"lat":48.8988,"acc":2.5,"dist":7499.246167796905,"slope":0,"color":"#00B798"},{"z":49.13,"lon":2.4123,"lat":48.8979,"acc":2.5,"dist":7604.869234670951,"slope":2,"color":"#00B798"},{"z":51.3,"lon":2.412,"lat":48.8969,"acc":2.5,"dist":7710.493320162403,"slope":2,"color":"#00B798"},{"z":52.21,"lon":2.4117,"lat":48.896,"acc":2.5,"dist":7816.117178612816,"slope":1,"color":"#00B798"},{"z":52.15,"lon":2.4114,"lat":48.8951,"acc":2.5,"dist":7921.7411320396595,"slope":0,"color":"#00B798"},{"z":52.47,"lon":2.4111,"lat":48.8942,"acc":2.5,"dist":8027.364858409987,"slope":0,"color":"#00B798"},{"z":53.59,"lon":2.4107,"lat":48.8932,"acc":2.5,"dist":8132.988518732277,"slope":1,"color":"#00B798"},{"z":55.91,"lon":2.4104,"lat":48.8923,"acc":2.5,"dist":8238.612112997744,"slope":2,"color":"#00B798"},{"z":57.34,"lon":2.4101,"lat":48.8914,"acc":2.5,"dist":8344.236725848545,"slope":1,"color":"#00B798"},{"z":59.14,"lon":2.4098,"lat":48.8905,"acc":2.5,"dist":8449.860187983335,"slope":2,"color":"#00B798"},{"z":60.41,"lon":2.4095,"lat":48.8895,"acc":2.5,"dist":8555.484507678293,"slope":1,"color":"#00B798"},{"z":61.24,"lon":2.4091,"lat":48.8886,"acc":2.5,"dist":8661.108761293028,"slope":1,"color":"#00B798"},{"z":63.34,"lon":2.4088,"lat":48.8877,"acc":2.5,"dist":8766.731864167166,"slope":2,"color":"#00B798"},{"z":65.64,"lon":2.4085,"lat":48.8868,"acc":2.5,"dist":8872.355985598235,"slope":2,"color":"#00B798"},{"z":67.77,"lon":2.4082,"lat":48.8858,"acc":2.5,"dist":8977.980040928956,"slope":2,"color":"#00B798"},{"z":69.81,"lon":2.4079,"lat":48.8849,"acc":2.5,"dist":9083.60386913884,"slope":2,"color":"#00B798"},{"z":74.35,"lon":2.4072,"lat":48.883,"acc":2.5,"dist":9294.85257287905,"slope":2,"color":"#00B798"},{"z":86.96,"lon":2.4069,"lat":48.8821,"acc":2.5,"dist":9400.476202726504,"slope":12,"color":"#00B798"},{"z":91.96,"lon":2.4066,"lat":48.8812,"acc":2.5,"dist":9506.100851099545,"slope":5,"color":"#00B798"},{"z":108.68,"lon":2.406,"lat":48.8793,"acc":2.5,"dist":9717.348703745318,"slope":8,"color":"#00B798"},{"z":110.97,"lon":2.4053,"lat":48.8775,"acc":2.5,"dist":9928.597215427711,"slope":1,"color":"#00B798"},{"z":118.72,"lon":2.4047,"lat":48.8756,"acc":2.5,"dist":10139.845462446017,"slope":4,"color":"#00B798"},{"z":120.08,"lon":2.4044,"lat":48.8747,"acc":2.5,"dist":10245.469325676695,"slope":1,"color":"#00B798"},{"z":116.67,"lon":2.4041,"lat":48.8738,"acc":2.5,"dist":10351.094368402635,"slope":3,"color":"#00B798"},{"z":112.08,"lon":2.4037,"lat":48.8729,"acc":2.5,"dist":10456.718099255399,"slope":4,"color":"#00B798"},{"z":107.72,"lon":2.4034,"lat":48.8719,"acc":2.5,"dist":10562.342848577668,"slope":4,"color":"#00B798"},{"z":105.9,"lon":2.4031,"lat":48.871,"acc":2.5,"dist":10667.966447025721,"slope":2,"color":"#00B798"},{"z":103.4,"lon":2.4028,"lat":48.8701,"acc":2.5,"dist":10773.591063932625,"slope":2,"color":"#00B798"},{"z":96.44,"lon":2.4022,"lat":48.8682,"acc":2.5,"dist":10984.839938075422,"slope":3,"color":"#00B798"},{"z":87.59,"lon":2.4018,"lat":48.8673,"acc":2.5,"dist":11090.464195295861,"slope":8,"color":"#00B798"},{"z":87.38,"lon":2.4015,"lat":48.8664,"acc":2.5,"dist":11196.088386280038,"slope":0,"color":"#00B798"},{"z":87.01,"lon":2.4012,"lat":48.8654,"acc":2.5,"dist":11301.712511019186,"slope":0,"color":"#00B798"},{"z":83.08,"lon":2.4009,"lat":48.8645,"acc":2.5,"dist":11407.337654186593,"slope":4,"color":"#00B798"},{"z":82.1,"lon":2.4002,"lat":48.8627,"acc":2.5,"dist":11618.586335039692,"slope":0,"color":"#00B798"},{"z":90.43,"lon":2.3996,"lat":48.8608,"acc":2.5,"dist":11829.834911826123,"slope":4,"color":"#00B798"},{"z":86.82,"lon":2.3993,"lat":48.8599,"acc":2.5,"dist":11935.459401619537,"slope":3,"color":"#00B798"},{"z":73.82,"lon":2.399,"lat":48.859,"acc":2.5,"dist":12041.08398613748,"slope":12,"color":"#00B798"},{"z":64.66,"lon":2.3983,"lat":48.8571,"acc":2.5,"dist":12252.332795264896,"slope":4,"color":"#00B798"},{"z":62,"lon":2.3977,"lat":48.8553,"acc":2.5,"dist":12463.582262832771,"slope":1,"color":"#00B798"},{"z":57.34,"lon":2.3971,"lat":48.8534,"acc":2.5,"dist":12674.831304100151,"slope":2,"color":"#00B798"},{"z":52.14,"lon":2.3964,"lat":48.8515,"acc":2.5,"dist":12886.081164720088,"slope":2,"color":"#00B798"},{"z":50.92,"lon":2.3958,"lat":48.8497,"acc":2.5,"dist":13097.33059893873,"slope":1,"color":"#00B798"},{"z":50.67,"lon":2.3952,"lat":48.8478,"acc":2.5,"dist":13308.579606702622,"slope":0,"color":"#00B798"},{"z":50.28,"lon":2.3945,"lat":48.846,"acc":2.5,"dist":13519.8294336682,"slope":0,"color":"#00B798"},{"z":50.22,"lon":2.3942,"lat":48.8451,"acc":2.5,"dist":13625.453624719368,"slope":0,"color":"#00B798"},{"z":47.03,"lon":2.3939,"lat":48.8441,"acc":2.5,"dist":13731.078834076225,"slope":3,"color":"#00B798"},{"z":49.15,"lon":2.3936,"lat":48.8432,"acc":2.5,"dist":13836.703816022216,"slope":2,"color":"#00B798"},{"z":52.46,"lon":2.3933,"lat":48.8423,"acc":2.5,"dist":13942.327807873258,"slope":3,"color":"#00B798"},{"z":46.39,"lon":2.3929,"lat":48.8414,"acc":2.5,"dist":14047.95265700084,"slope":6,"color":"#00B798"},{"z":46.93,"lon":2.3926,"lat":48.8404,"acc":2.5,"dist":14153.577600721896,"slope":1,"color":"#00B798"},{"z":47.1,"lon":2.3923,"lat":48.8395,"acc":2.5,"dist":14259.20231700606,"slope":0,"color":"#00B798"},{"z":44.43,"lon":2.392,"lat":48.8386,"acc":2.5,"dist":14364.827890551858,"slope":3,"color":"#00B798"},{"z":37.47,"lon":2.3917,"lat":48.8376,"acc":2.5,"dist":14470.45247396486,"slope":7,"color":"#00B798"},{"z":35.77,"lon":2.3913,"lat":48.8367,"acc":2.5,"dist":14576.076990933141,"slope":2,"color":"#00B798"},{"z":39.79,"lon":2.391,"lat":48.8358,"acc":2.5,"dist":14681.702365147457,"slope":4,"color":"#00B798"},{"z":38.32,"lon":2.3907,"lat":48.8349,"acc":2.5,"dist":14787.327672902997,"slope":1,"color":"#00B798"},{"z":38.47,"lon":2.3904,"lat":48.8339,"acc":2.5,"dist":14892.951829484857,"slope":0,"color":"#00B798"},{"z":33.8,"lon":2.3901,"lat":48.833,"acc":2.5,"dist":14998.57700430797,"slope":4,"color":"#00B798"},{"z":33.42,"lon":2.3898,"lat":48.8321,"acc":2.5,"dist":15104.202112652272,"slope":0,"color":"#00B798"},{"z":39.56,"lon":2.3894,"lat":48.8312,"acc":2.5,"dist":15209.82699350239,"slope":6,"color":"#00B798"},{"z":38.4,"lon":2.3891,"lat":48.8302,"acc":2.5,"dist":15315.451807860365,"slope":1,"color":"#00B798"},{"z":38.81,"lon":2.3888,"lat":48.8293,"acc":2.5,"dist":15421.077801453926,"slope":0,"color":"#00B798"},{"z":32.23,"lon":2.3885,"lat":48.8284,"acc":2.5,"dist":15526.702482812725,"slope":6,"color":"#00B798"},{"z":28.05,"lon":2.3882,"lat":48.8275,"acc":2.5,"dist":15632.328021370893,"slope":4,"color":"#00B798"},{"z":28.05,"lon":2.3879,"lat":48.8265,"acc":2.5,"dist":15737.95256970384,"slope":0,"color":"#00B798"},{"z":33.04,"lon":2.3875,"lat":48.8256,"acc":2.5,"dist":15843.57797522418,"slope":5,"color":"#00B798"},{"z":33.12,"lon":2.3869,"lat":48.8237,"acc":2.5,"dist":16054.827662961123,"slope":0,"color":"#00B798"},{"z":34.99,"lon":2.3866,"lat":48.8228,"acc":2.5,"dist":16160.452868874861,"slope":2,"color":"#00B798"},{"z":32.61,"lon":2.3863,"lat":48.8219,"acc":2.5,"dist":16266.07800824124,"slope":2,"color":"#00B798"},{"z":33.61,"lon":2.3856,"lat":48.82,"acc":2.5,"dist":16477.329011018,"slope":0,"color":"#00B798"},{"z":34.02,"lon":2.3853,"lat":48.8191,"acc":2.5,"dist":16582.95378968705,"slope":0,"color":"#00B798"},{"z":34.17,"lon":2.385,"lat":48.8182,"acc":2.5,"dist":16688.579586512464,"slope":0,"color":"#00B798"},{"z":34.74,"lon":2.3844,"lat":48.8163,"acc":2.5,"dist":16899.829895686154,"slope":0,"color":"#00B798"},{"z":33.88,"lon":2.384,"lat":48.8154,"acc":2.5,"dist":17005.45533173977,"slope":1,"color":"#00B798"},{"z":33.54,"lon":2.3837,"lat":48.8145,"acc":2.5,"dist":17111.08086220612,"slope":0,"color":"#00B798"},{"z":34.65,"lon":2.3834,"lat":48.8136,"acc":2.5,"dist":17216.706165053034,"slope":1,"color":"#00B798"},{"z":34.7,"lon":2.3831,"lat":48.8126,"acc":2.5,"dist":17322.331401289357,"slope":0,"color":"#00B798"},{"z":40.31,"lon":2.3828,"lat":48.8117,"acc":2.5,"dist":17427.95657090568,"slope":5,"color":"#00B798"},{"z":48.05,"lon":2.3825,"lat":48.8108,"acc":2.5,"dist":17533.58167389535,"slope":7,"color":"#00B798"},{"z":61.41,"lon":2.3818,"lat":48.8089,"acc":2.5,"dist":17744.83260369798,"slope":6,"color":"#00B798"},{"z":63.92,"lon":2.3815,"lat":48.808,"acc":2.5,"dist":17850.458430498995,"slope":2,"color":"#00B798"},{"z":64.62,"lon":2.3812,"lat":48.8071,"acc":2.5,"dist":17956.08419064945,"slope":1,"color":"#00B798"},{"z":64.35,"lon":2.3809,"lat":48.8061,"acc":2.5,"dist":18061.708799400396,"slope":0,"color":"#00B798"},{"z":64.25,"lon":2.3806,"lat":48.8052,"acc":2.5,"dist":18167.33442622872,"slope":0,"color":"#00B798"},{"z":60.18,"lon":2.3799,"lat":48.8034,"acc":2.5,"dist":18378.586403599762,"slope":2,"color":"#00B798"},{"z":61.06,"lon":2.3793,"lat":48.8015,"acc":2.5,"dist":18589.836868480812,"slope":0,"color":"#00B798"},{"z":61.84,"lon":2.379,"lat":48.8006,"acc":2.5,"dist":18695.463085627343,"slope":1,"color":"#00B798"},{"z":61.02,"lon":2.3787,"lat":48.7997,"acc":2.5,"dist":18801.088151321306,"slope":1,"color":"#00B798"},{"z":65.9,"lon":2.378,"lat":48.7978,"acc":2.5,"dist":19012.3388453001,"slope":2,"color":"#00B798"},{"z":75.48,"lon":2.3774,"lat":48.7959,"acc":2.5,"dist":19223.590518154106,"slope":5,"color":"#00B798"},{"z":79.83,"lon":2.3768,"lat":48.7941,"acc":2.5,"dist":19434.841602043416,"slope":2,"color":"#00B798"},{"z":95.4,"lon":2.3761,"lat":48.7922,"acc":2.5,"dist":19646.09350369705,"slope":7,"color":"#00B798"},{"z":98.43,"lon":2.3755,"lat":48.7904,"acc":2.5,"dist":19857.345138308312,"slope":1,"color":"#00B798"},{"z":97.8,"lon":2.3749,"lat":48.7885,"acc":2.5,"dist":20068.596183798774,"slope":0,"color":"#00B798"},{"z":97.28,"lon":2.3742,"lat":48.7867,"acc":2.5,"dist":20279.848046904917,"slope":0,"color":"#00B798"},{"z":97.51,"lon":2.3739,"lat":48.7858,"acc":2.5,"dist":20385.47379775515,"slope":0,"color":"#00B798"},{"z":97.87,"lon":2.3736,"lat":48.7848,"acc":2.5,"dist":20491.099481800673,"slope":0,"color":"#00B798"},{"z":97.75,"lon":2.3733,"lat":48.7839,"acc":2.5,"dist":20596.726183799517,"slope":0,"color":"#00B798"},{"z":98.18,"lon":2.373,"lat":48.783,"acc":2.5,"dist":20702.351734213273,"slope":0,"color":"#00B798"},{"z":98.23,"lon":2.3726,"lat":48.782,"acc":2.5,"dist":20807.978302569776,"slope":0,"color":"#00B798"},{"z":96.84,"lon":2.3723,"lat":48.7811,"acc":2.5,"dist":20913.60355831398,"slope":1,"color":"#00B798"},{"z":94.9,"lon":2.3717,"lat":48.7793,"acc":2.5,"dist":21124.85603882081,"slope":1,"color":"#00B798"},{"z":94.5,"lon":2.3714,"lat":48.7783,"acc":2.5,"dist":21230.482178802085,"slope":0,"color":"#00B798"},{"z":94.46,"lon":2.3711,"lat":48.7774,"acc":2.5,"dist":21336.108251926882,"slope":0,"color":"#00B798"},{"z":94.18,"lon":2.3707,"lat":48.7765,"acc":2.5,"dist":21441.73409717322,"slope":0,"color":"#00B798"},{"z":94.3,"lon":2.3704,"lat":48.7756,"acc":2.5,"dist":21547.360036563055,"slope":0,"color":"#00B798"},{"z":94.19,"lon":2.3698,"lat":48.7737,"acc":2.5,"dist":21758.611392679002,"slope":0,"color":"#00B798"},{"z":94.42,"lon":2.3692,"lat":48.7719,"acc":2.5,"dist":21969.864650795516,"slope":0,"color":"#00B798"},{"z":95.08,"lon":2.3688,"lat":48.7709,"acc":2.5,"dist":22075.489933710487,"slope":1,"color":"#00B798"},{"z":94.87,"lon":2.3685,"lat":48.77,"acc":2.5,"dist":22181.116395510417,"slope":0,"color":"#00B798"},{"z":94.13,"lon":2.3679,"lat":48.7681,"acc":2.5,"dist":22392.368796333296,"slope":0,"color":"#00B798"},{"z":92.49,"lon":2.3673,"lat":48.7663,"acc":2.5,"dist":22603.620768430457,"slope":1,"color":"#00B798"},{"z":91.26,"lon":2.3666,"lat":48.7644,"acc":2.5,"dist":22814.873557552935,"slope":1,"color":"#00B798"},{"z":89.48,"lon":2.366,"lat":48.7626,"acc":2.5,"dist":23026.12607885949,"slope":1,"color":"#00B798"},{"z":88.85,"lon":2.3654,"lat":48.7607,"acc":2.5,"dist":23237.379095064945,"slope":0,"color":"#00B798"},{"z":87.22,"lon":2.3647,"lat":48.7589,"acc":2.5,"dist":23448.631843355968,"slope":1,"color":"#00B798"},{"z":86.63,"lon":2.3641,"lat":48.757,"acc":2.5,"dist":23659.88432367676,"slope":0,"color":"#00B798"},{"z":86.19,"lon":2.3638,"lat":48.7561,"acc":2.5,"dist":23765.510382826124,"slope":0,"color":"#00B798"},{"z":86.46,"lon":2.3635,"lat":48.7552,"acc":2.5,"dist":23871.137298748323,"slope":0,"color":"#00B798"},{"z":79.6,"lon":2.3628,"lat":48.7533,"acc":2.5,"dist":24082.390005749803,"slope":3,"color":"#00B798"},{"z":85.17,"lon":2.3622,"lat":48.7515,"acc":2.5,"dist":24293.64244462614,"slope":3,"color":"#00B798"},{"z":84.61,"lon":2.3616,"lat":48.7496,"acc":2.5,"dist":24504.895378105193,"slope":0,"color":"#00B798"},{"z":84,"lon":2.3609,"lat":48.7478,"acc":2.5,"dist":24716.14912816361,"slope":0,"color":"#00B798"},{"z":91.3,"lon":2.3603,"lat":48.7459,"acc":2.5,"dist":24927.402609948163,"slope":3,"color":"#00B798"},{"z":85.05,"lon":2.3597,"lat":48.744,"acc":2.5,"dist":25138.655662392124,"slope":3,"color":"#00B798"},{"z":88.53,"lon":2.359,"lat":48.7422,"acc":2.5,"dist":25349.908285441164,"slope":2,"color":"#00B798"},{"z":91.07,"lon":2.3587,"lat":48.7413,"acc":2.5,"dist":25455.53495820814,"slope":2,"color":"#00B798"},{"z":91.45,"lon":2.3584,"lat":48.7403,"acc":2.5,"dist":25561.161563859627,"slope":0,"color":"#00B798"},{"z":86.89,"lon":2.3578,"lat":48.7385,"acc":2.5,"dist":25772.415658612415,"slope":2,"color":"#00B798"},{"z":86.72,"lon":2.3571,"lat":48.7366,"acc":2.5,"dist":25983.669323821745,"slope":0,"color":"#00B798"},{"z":86.58,"lon":2.3565,"lat":48.7348,"acc":2.5,"dist":26194.922720445036,"slope":0,"color":"#00B798"},{"z":86.76,"lon":2.3559,"lat":48.7329,"acc":2.5,"dist":26406.176611230003,"slope":0,"color":"#00B798"},{"z":85.42,"lon":2.3552,"lat":48.7311,"acc":2.5,"dist":26617.430394341663,"slope":1,"color":"#00B798"},{"z":85.28,"lon":2.3546,"lat":48.7292,"acc":2.5,"dist":26828.68358668796,"slope":0,"color":"#00B798"},{"z":84.9,"lon":2.354,"lat":48.7274,"acc":2.5,"dist":27039.93759507291,"slope":0,"color":"#00B798"}]}}
\ No newline at end of file
+{
+ "type":"FeatureCollection",
+ "features":[
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"LineString",
+ "coordinates":[
+ [
+ 2.4352744768852865,
+ 48.96458336001166
+ ],
+ [
+ 2.3539666836501008,
+ 48.72736748173057
+ ]
+ ]
+ },
+ "properties":null
+ }
+ ],
+ "geoportail:compute":{
+ "type":"elevationpath",
+ "greaterSlope":12,
+ "meanSlope":2,
+ "distancePlus":13414.310931585807,
+ "distanceMinus":13520.002115154157,
+ "ascendingElevation":240.83000000000015,
+ "descendingElevation":-202.26,
+ "altMin":"28,05",
+ "altMax":"120,08",
+ "distance":27039.93759507291,
+ "unit":"m",
+ "points":[
+ {
+ "z":46.33,
+ "lon":2.4353,
+ "lat":48.9646,
+ "acc":2.5,
+ "dist":0,
+ "slope":0
+ },
+ {
+ "z":45.67,
+ "lon":2.435,
+ "lat":48.9637,
+ "acc":2.5,
+ "dist":105.62223884135284,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":44.58,
+ "lon":2.4346,
+ "lat":48.9627,
+ "acc":2.5,
+ "dist":211.24533567735983,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":43.43,
+ "lon":2.4343,
+ "lat":48.9618,
+ "acc":2.5,
+ "dist":316.86744339158764,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":41.84,
+ "lon":2.434,
+ "lat":48.9609,
+ "acc":2.5,
+ "dist":422.490409088714,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":40.94,
+ "lon":2.4337,
+ "lat":48.96,
+ "acc":2.5,
+ "dist":528.1133092069166,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":39.63,
+ "lon":2.4334,
+ "lat":48.959,
+ "acc":2.5,
+ "dist":633.7361437393077,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":39.13,
+ "lon":2.433,
+ "lat":48.9581,
+ "acc":2.5,
+ "dist":739.3587516663466,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":39.47,
+ "lon":2.4327,
+ "lat":48.9572,
+ "acc":2.5,
+ "dist":844.9814550067377,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":39.66,
+ "lon":2.4324,
+ "lat":48.9562,
+ "acc":2.5,
+ "dist":950.603931726924,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":39.89,
+ "lon":2.4321,
+ "lat":48.9553,
+ "acc":2.5,
+ "dist":1056.2263428342671,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":40.44,
+ "lon":2.4318,
+ "lat":48.9544,
+ "acc":2.5,
+ "dist":1161.8497729023165,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":41.35,
+ "lon":2.4314,
+ "lat":48.9535,
+ "acc":2.5,
+ "dist":1267.4720527654492,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":42.3,
+ "lon":2.4311,
+ "lat":48.9525,
+ "acc":2.5,
+ "dist":1373.0951905630232,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":42.74,
+ "lon":2.4308,
+ "lat":48.9516,
+ "acc":2.5,
+ "dist":1478.717339154242,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":43.03,
+ "lon":2.4305,
+ "lat":48.9507,
+ "acc":2.5,
+ "dist":1584.3403456684318,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":43.8,
+ "lon":2.4302,
+ "lat":48.9498,
+ "acc":2.5,
+ "dist":1689.963286532057,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":44.46,
+ "lon":2.4299,
+ "lat":48.9488,
+ "acc":2.5,
+ "dist":1795.5861617356095,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":44.67,
+ "lon":2.4295,
+ "lat":48.9479,
+ "acc":2.5,
+ "dist":1901.2088102630175,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":45.66,
+ "lon":2.4292,
+ "lat":48.947,
+ "acc":2.5,
+ "dist":2006.831554131651,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":45.49,
+ "lon":2.4289,
+ "lat":48.9461,
+ "acc":2.5,
+ "dist":2112.4551558960875,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":46.03,
+ "lon":2.4286,
+ "lat":48.9451,
+ "acc":2.5,
+ "dist":2218.077607389068,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":46.2,
+ "lon":2.4283,
+ "lat":48.9442,
+ "acc":2.5,
+ "dist":2323.7010777805494,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":45.93,
+ "lon":2.4279,
+ "lat":48.9433,
+ "acc":2.5,
+ "dist":2429.3233978843155,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":46.19,
+ "lon":2.4276,
+ "lat":48.9423,
+ "acc":2.5,
+ "dist":2534.9465758610827,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":39.78,
+ "lon":2.4273,
+ "lat":48.9414,
+ "acc":2.5,
+ "dist":2640.5698491426765,
+ "slope":6,
+ "color":"#00B798"
+ },
+ {
+ "z":45.74,
+ "lon":2.427,
+ "lat":48.9405,
+ "acc":2.5,
+ "dist":2746.1928956928555,
+ "slope":6,
+ "color":"#00B798"
+ },
+ {
+ "z":42.84,
+ "lon":2.4267,
+ "lat":48.9396,
+ "acc":2.5,
+ "dist":2851.8158765210187,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":39.07,
+ "lon":2.4263,
+ "lat":48.9386,
+ "acc":2.5,
+ "dist":2957.438791617658,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":39.16,
+ "lon":2.426,
+ "lat":48.9377,
+ "acc":2.5,
+ "dist":3063.0614799640653,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":41.41,
+ "lon":2.4257,
+ "lat":48.9368,
+ "acc":2.5,
+ "dist":3168.6853481800567,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":43.34,
+ "lon":2.4251,
+ "lat":48.9349,
+ "acc":2.5,
+ "dist":3379.931480731123,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":44.35,
+ "lon":2.4248,
+ "lat":48.934,
+ "acc":2.5,
+ "dist":3485.553906065343,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":44.45,
+ "lon":2.4244,
+ "lat":48.9331,
+ "acc":2.5,
+ "dist":3591.1773502316187,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":44.9,
+ "lon":2.4241,
+ "lat":48.9322,
+ "acc":2.5,
+ "dist":3696.8005676086514,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":44.46,
+ "lon":2.4238,
+ "lat":48.9312,
+ "acc":2.5,
+ "dist":3802.423880217659,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":43.57,
+ "lon":2.4235,
+ "lat":48.9303,
+ "acc":2.5,
+ "dist":3908.046966023273,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":48.15,
+ "lon":2.4232,
+ "lat":48.9294,
+ "acc":2.5,
+ "dist":4013.6699860354997,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":49.28,
+ "lon":2.4228,
+ "lat":48.9284,
+ "acc":2.5,
+ "dist":4119.292940244847,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":43.47,
+ "lon":2.4225,
+ "lat":48.9275,
+ "acc":2.5,
+ "dist":4224.91691325337,
+ "slope":6,
+ "color":"#00B798"
+ },
+ {
+ "z":42.59,
+ "lon":2.4222,
+ "lat":48.9266,
+ "acc":2.5,
+ "dist":4330.539574825868,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":42.81,
+ "lon":2.4219,
+ "lat":48.9257,
+ "acc":2.5,
+ "dist":4436.163255186841,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":42.8,
+ "lon":2.4216,
+ "lat":48.9247,
+ "acc":2.5,
+ "dist":4541.78578510748,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":42.58,
+ "lon":2.4212,
+ "lat":48.9238,
+ "acc":2.5,
+ "dist":4647.409333806564,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":41.46,
+ "lon":2.4209,
+ "lat":48.9229,
+ "acc":2.5,
+ "dist":4753.032816665108,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":41.72,
+ "lon":2.4206,
+ "lat":48.922,
+ "acc":2.5,
+ "dist":4858.656233676394,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":41.81,
+ "lon":2.42,
+ "lat":48.9201,
+ "acc":2.5,
+ "dist":5069.902548102409,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":42.75,
+ "lon":2.4197,
+ "lat":48.9192,
+ "acc":2.5,
+ "dist":5175.526852148913,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":42.27,
+ "lon":2.4193,
+ "lat":48.9183,
+ "acc":2.5,
+ "dist":5281.149683677052,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":43.12,
+ "lon":2.419,
+ "lat":48.9173,
+ "acc":2.5,
+ "dist":5386.773694959015,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":42.77,
+ "lon":2.4187,
+ "lat":48.9164,
+ "acc":2.5,
+ "dist":5492.396555734283,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":40.02,
+ "lon":2.4184,
+ "lat":48.9155,
+ "acc":2.5,
+ "dist":5598.020274223431,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":42.36,
+ "lon":2.4181,
+ "lat":48.9146,
+ "acc":2.5,
+ "dist":5703.643926813584,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":42.48,
+ "lon":2.4174,
+ "lat":48.9127,
+ "acc":2.5,
+ "dist":5914.891034270614,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":42.26,
+ "lon":2.4171,
+ "lat":48.9118,
+ "acc":2.5,
+ "dist":6020.514489124057,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":43.33,
+ "lon":2.4168,
+ "lat":48.9108,
+ "acc":2.5,
+ "dist":6126.13771703769,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":43.49,
+ "lon":2.4161,
+ "lat":48.909,
+ "acc":2.5,
+ "dist":6337.3850596897155,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":45.59,
+ "lon":2.4155,
+ "lat":48.9071,
+ "acc":2.5,
+ "dist":6548.632138562224,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":47.7,
+ "lon":2.4149,
+ "lat":48.9053,
+ "acc":2.5,
+ "dist":6759.8798772203845,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":46.24,
+ "lon":2.4146,
+ "lat":48.9044,
+ "acc":2.5,
+ "dist":6865.50356708921,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":44.9,
+ "lon":2.4142,
+ "lat":48.9034,
+ "acc":2.5,
+ "dist":6971.127190981787,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":44.22,
+ "lon":2.4139,
+ "lat":48.9025,
+ "acc":2.5,
+ "dist":7076.750748888653,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":45.44,
+ "lon":2.4136,
+ "lat":48.9016,
+ "acc":2.5,
+ "dist":7182.374240805843,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":52.57,
+ "lon":2.4133,
+ "lat":48.9007,
+ "acc":2.5,
+ "dist":7287.997505710742,
+ "slope":7,
+ "color":"#00B798"
+ },
+ {
+ "z":51.58,
+ "lon":2.413,
+ "lat":48.8997,
+ "acc":2.5,
+ "dist":7393.621950265311,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":51.4,
+ "lon":2.4126,
+ "lat":48.8988,
+ "acc":2.5,
+ "dist":7499.246167796905,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":49.13,
+ "lon":2.4123,
+ "lat":48.8979,
+ "acc":2.5,
+ "dist":7604.869234670951,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":51.3,
+ "lon":2.412,
+ "lat":48.8969,
+ "acc":2.5,
+ "dist":7710.493320162403,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":52.21,
+ "lon":2.4117,
+ "lat":48.896,
+ "acc":2.5,
+ "dist":7816.117178612816,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":52.15,
+ "lon":2.4114,
+ "lat":48.8951,
+ "acc":2.5,
+ "dist":7921.7411320396595,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":52.47,
+ "lon":2.4111,
+ "lat":48.8942,
+ "acc":2.5,
+ "dist":8027.364858409987,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":53.59,
+ "lon":2.4107,
+ "lat":48.8932,
+ "acc":2.5,
+ "dist":8132.988518732277,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":55.91,
+ "lon":2.4104,
+ "lat":48.8923,
+ "acc":2.5,
+ "dist":8238.612112997744,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":57.34,
+ "lon":2.4101,
+ "lat":48.8914,
+ "acc":2.5,
+ "dist":8344.236725848545,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":59.14,
+ "lon":2.4098,
+ "lat":48.8905,
+ "acc":2.5,
+ "dist":8449.860187983335,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":60.41,
+ "lon":2.4095,
+ "lat":48.8895,
+ "acc":2.5,
+ "dist":8555.484507678293,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":61.24,
+ "lon":2.4091,
+ "lat":48.8886,
+ "acc":2.5,
+ "dist":8661.108761293028,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":63.34,
+ "lon":2.4088,
+ "lat":48.8877,
+ "acc":2.5,
+ "dist":8766.731864167166,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":65.64,
+ "lon":2.4085,
+ "lat":48.8868,
+ "acc":2.5,
+ "dist":8872.355985598235,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":67.77,
+ "lon":2.4082,
+ "lat":48.8858,
+ "acc":2.5,
+ "dist":8977.980040928956,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":69.81,
+ "lon":2.4079,
+ "lat":48.8849,
+ "acc":2.5,
+ "dist":9083.60386913884,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":74.35,
+ "lon":2.4072,
+ "lat":48.883,
+ "acc":2.5,
+ "dist":9294.85257287905,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":86.96,
+ "lon":2.4069,
+ "lat":48.8821,
+ "acc":2.5,
+ "dist":9400.476202726504,
+ "slope":12,
+ "color":"#00B798"
+ },
+ {
+ "z":91.96,
+ "lon":2.4066,
+ "lat":48.8812,
+ "acc":2.5,
+ "dist":9506.100851099545,
+ "slope":5,
+ "color":"#00B798"
+ },
+ {
+ "z":108.68,
+ "lon":2.406,
+ "lat":48.8793,
+ "acc":2.5,
+ "dist":9717.348703745318,
+ "slope":8,
+ "color":"#00B798"
+ },
+ {
+ "z":110.97,
+ "lon":2.4053,
+ "lat":48.8775,
+ "acc":2.5,
+ "dist":9928.597215427711,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":118.72,
+ "lon":2.4047,
+ "lat":48.8756,
+ "acc":2.5,
+ "dist":10139.845462446017,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":120.08,
+ "lon":2.4044,
+ "lat":48.8747,
+ "acc":2.5,
+ "dist":10245.469325676695,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":116.67,
+ "lon":2.4041,
+ "lat":48.8738,
+ "acc":2.5,
+ "dist":10351.094368402635,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":112.08,
+ "lon":2.4037,
+ "lat":48.8729,
+ "acc":2.5,
+ "dist":10456.718099255399,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":107.72,
+ "lon":2.4034,
+ "lat":48.8719,
+ "acc":2.5,
+ "dist":10562.342848577668,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":105.9,
+ "lon":2.4031,
+ "lat":48.871,
+ "acc":2.5,
+ "dist":10667.966447025721,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":103.4,
+ "lon":2.4028,
+ "lat":48.8701,
+ "acc":2.5,
+ "dist":10773.591063932625,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":96.44,
+ "lon":2.4022,
+ "lat":48.8682,
+ "acc":2.5,
+ "dist":10984.839938075422,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":87.59,
+ "lon":2.4018,
+ "lat":48.8673,
+ "acc":2.5,
+ "dist":11090.464195295861,
+ "slope":8,
+ "color":"#00B798"
+ },
+ {
+ "z":87.38,
+ "lon":2.4015,
+ "lat":48.8664,
+ "acc":2.5,
+ "dist":11196.088386280038,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":87.01,
+ "lon":2.4012,
+ "lat":48.8654,
+ "acc":2.5,
+ "dist":11301.712511019186,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":83.08,
+ "lon":2.4009,
+ "lat":48.8645,
+ "acc":2.5,
+ "dist":11407.337654186593,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":82.1,
+ "lon":2.4002,
+ "lat":48.8627,
+ "acc":2.5,
+ "dist":11618.586335039692,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":90.43,
+ "lon":2.3996,
+ "lat":48.8608,
+ "acc":2.5,
+ "dist":11829.834911826123,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":86.82,
+ "lon":2.3993,
+ "lat":48.8599,
+ "acc":2.5,
+ "dist":11935.459401619537,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":73.82,
+ "lon":2.399,
+ "lat":48.859,
+ "acc":2.5,
+ "dist":12041.08398613748,
+ "slope":12,
+ "color":"#00B798"
+ },
+ {
+ "z":64.66,
+ "lon":2.3983,
+ "lat":48.8571,
+ "acc":2.5,
+ "dist":12252.332795264896,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":62,
+ "lon":2.3977,
+ "lat":48.8553,
+ "acc":2.5,
+ "dist":12463.582262832771,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":57.34,
+ "lon":2.3971,
+ "lat":48.8534,
+ "acc":2.5,
+ "dist":12674.831304100151,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":52.14,
+ "lon":2.3964,
+ "lat":48.8515,
+ "acc":2.5,
+ "dist":12886.081164720088,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":50.92,
+ "lon":2.3958,
+ "lat":48.8497,
+ "acc":2.5,
+ "dist":13097.33059893873,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":50.67,
+ "lon":2.3952,
+ "lat":48.8478,
+ "acc":2.5,
+ "dist":13308.579606702622,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":50.28,
+ "lon":2.3945,
+ "lat":48.846,
+ "acc":2.5,
+ "dist":13519.8294336682,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":50.22,
+ "lon":2.3942,
+ "lat":48.8451,
+ "acc":2.5,
+ "dist":13625.453624719368,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":47.03,
+ "lon":2.3939,
+ "lat":48.8441,
+ "acc":2.5,
+ "dist":13731.078834076225,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":49.15,
+ "lon":2.3936,
+ "lat":48.8432,
+ "acc":2.5,
+ "dist":13836.703816022216,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":52.46,
+ "lon":2.3933,
+ "lat":48.8423,
+ "acc":2.5,
+ "dist":13942.327807873258,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":46.39,
+ "lon":2.3929,
+ "lat":48.8414,
+ "acc":2.5,
+ "dist":14047.95265700084,
+ "slope":6,
+ "color":"#00B798"
+ },
+ {
+ "z":46.93,
+ "lon":2.3926,
+ "lat":48.8404,
+ "acc":2.5,
+ "dist":14153.577600721896,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":47.1,
+ "lon":2.3923,
+ "lat":48.8395,
+ "acc":2.5,
+ "dist":14259.20231700606,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":44.43,
+ "lon":2.392,
+ "lat":48.8386,
+ "acc":2.5,
+ "dist":14364.827890551858,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":37.47,
+ "lon":2.3917,
+ "lat":48.8376,
+ "acc":2.5,
+ "dist":14470.45247396486,
+ "slope":7,
+ "color":"#00B798"
+ },
+ {
+ "z":35.77,
+ "lon":2.3913,
+ "lat":48.8367,
+ "acc":2.5,
+ "dist":14576.076990933141,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":39.79,
+ "lon":2.391,
+ "lat":48.8358,
+ "acc":2.5,
+ "dist":14681.702365147457,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":38.32,
+ "lon":2.3907,
+ "lat":48.8349,
+ "acc":2.5,
+ "dist":14787.327672902997,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":38.47,
+ "lon":2.3904,
+ "lat":48.8339,
+ "acc":2.5,
+ "dist":14892.951829484857,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":33.8,
+ "lon":2.3901,
+ "lat":48.833,
+ "acc":2.5,
+ "dist":14998.57700430797,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":33.42,
+ "lon":2.3898,
+ "lat":48.8321,
+ "acc":2.5,
+ "dist":15104.202112652272,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":39.56,
+ "lon":2.3894,
+ "lat":48.8312,
+ "acc":2.5,
+ "dist":15209.82699350239,
+ "slope":6,
+ "color":"#00B798"
+ },
+ {
+ "z":38.4,
+ "lon":2.3891,
+ "lat":48.8302,
+ "acc":2.5,
+ "dist":15315.451807860365,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":38.81,
+ "lon":2.3888,
+ "lat":48.8293,
+ "acc":2.5,
+ "dist":15421.077801453926,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":32.23,
+ "lon":2.3885,
+ "lat":48.8284,
+ "acc":2.5,
+ "dist":15526.702482812725,
+ "slope":6,
+ "color":"#00B798"
+ },
+ {
+ "z":28.05,
+ "lon":2.3882,
+ "lat":48.8275,
+ "acc":2.5,
+ "dist":15632.328021370893,
+ "slope":4,
+ "color":"#00B798"
+ },
+ {
+ "z":28.05,
+ "lon":2.3879,
+ "lat":48.8265,
+ "acc":2.5,
+ "dist":15737.95256970384,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":33.04,
+ "lon":2.3875,
+ "lat":48.8256,
+ "acc":2.5,
+ "dist":15843.57797522418,
+ "slope":5,
+ "color":"#00B798"
+ },
+ {
+ "z":33.12,
+ "lon":2.3869,
+ "lat":48.8237,
+ "acc":2.5,
+ "dist":16054.827662961123,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":34.99,
+ "lon":2.3866,
+ "lat":48.8228,
+ "acc":2.5,
+ "dist":16160.452868874861,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":32.61,
+ "lon":2.3863,
+ "lat":48.8219,
+ "acc":2.5,
+ "dist":16266.07800824124,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":33.61,
+ "lon":2.3856,
+ "lat":48.82,
+ "acc":2.5,
+ "dist":16477.329011018,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":34.02,
+ "lon":2.3853,
+ "lat":48.8191,
+ "acc":2.5,
+ "dist":16582.95378968705,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":34.17,
+ "lon":2.385,
+ "lat":48.8182,
+ "acc":2.5,
+ "dist":16688.579586512464,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":34.74,
+ "lon":2.3844,
+ "lat":48.8163,
+ "acc":2.5,
+ "dist":16899.829895686154,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":33.88,
+ "lon":2.384,
+ "lat":48.8154,
+ "acc":2.5,
+ "dist":17005.45533173977,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":33.54,
+ "lon":2.3837,
+ "lat":48.8145,
+ "acc":2.5,
+ "dist":17111.08086220612,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":34.65,
+ "lon":2.3834,
+ "lat":48.8136,
+ "acc":2.5,
+ "dist":17216.706165053034,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":34.7,
+ "lon":2.3831,
+ "lat":48.8126,
+ "acc":2.5,
+ "dist":17322.331401289357,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":40.31,
+ "lon":2.3828,
+ "lat":48.8117,
+ "acc":2.5,
+ "dist":17427.95657090568,
+ "slope":5,
+ "color":"#00B798"
+ },
+ {
+ "z":48.05,
+ "lon":2.3825,
+ "lat":48.8108,
+ "acc":2.5,
+ "dist":17533.58167389535,
+ "slope":7,
+ "color":"#00B798"
+ },
+ {
+ "z":61.41,
+ "lon":2.3818,
+ "lat":48.8089,
+ "acc":2.5,
+ "dist":17744.83260369798,
+ "slope":6,
+ "color":"#00B798"
+ },
+ {
+ "z":63.92,
+ "lon":2.3815,
+ "lat":48.808,
+ "acc":2.5,
+ "dist":17850.458430498995,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":64.62,
+ "lon":2.3812,
+ "lat":48.8071,
+ "acc":2.5,
+ "dist":17956.08419064945,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":64.35,
+ "lon":2.3809,
+ "lat":48.8061,
+ "acc":2.5,
+ "dist":18061.708799400396,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":64.25,
+ "lon":2.3806,
+ "lat":48.8052,
+ "acc":2.5,
+ "dist":18167.33442622872,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":60.18,
+ "lon":2.3799,
+ "lat":48.8034,
+ "acc":2.5,
+ "dist":18378.586403599762,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":61.06,
+ "lon":2.3793,
+ "lat":48.8015,
+ "acc":2.5,
+ "dist":18589.836868480812,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":61.84,
+ "lon":2.379,
+ "lat":48.8006,
+ "acc":2.5,
+ "dist":18695.463085627343,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":61.02,
+ "lon":2.3787,
+ "lat":48.7997,
+ "acc":2.5,
+ "dist":18801.088151321306,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":65.9,
+ "lon":2.378,
+ "lat":48.7978,
+ "acc":2.5,
+ "dist":19012.3388453001,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":75.48,
+ "lon":2.3774,
+ "lat":48.7959,
+ "acc":2.5,
+ "dist":19223.590518154106,
+ "slope":5,
+ "color":"#00B798"
+ },
+ {
+ "z":79.83,
+ "lon":2.3768,
+ "lat":48.7941,
+ "acc":2.5,
+ "dist":19434.841602043416,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":95.4,
+ "lon":2.3761,
+ "lat":48.7922,
+ "acc":2.5,
+ "dist":19646.09350369705,
+ "slope":7,
+ "color":"#00B798"
+ },
+ {
+ "z":98.43,
+ "lon":2.3755,
+ "lat":48.7904,
+ "acc":2.5,
+ "dist":19857.345138308312,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":97.8,
+ "lon":2.3749,
+ "lat":48.7885,
+ "acc":2.5,
+ "dist":20068.596183798774,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":97.28,
+ "lon":2.3742,
+ "lat":48.7867,
+ "acc":2.5,
+ "dist":20279.848046904917,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":97.51,
+ "lon":2.3739,
+ "lat":48.7858,
+ "acc":2.5,
+ "dist":20385.47379775515,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":97.87,
+ "lon":2.3736,
+ "lat":48.7848,
+ "acc":2.5,
+ "dist":20491.099481800673,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":97.75,
+ "lon":2.3733,
+ "lat":48.7839,
+ "acc":2.5,
+ "dist":20596.726183799517,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":98.18,
+ "lon":2.373,
+ "lat":48.783,
+ "acc":2.5,
+ "dist":20702.351734213273,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":98.23,
+ "lon":2.3726,
+ "lat":48.782,
+ "acc":2.5,
+ "dist":20807.978302569776,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":96.84,
+ "lon":2.3723,
+ "lat":48.7811,
+ "acc":2.5,
+ "dist":20913.60355831398,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":94.9,
+ "lon":2.3717,
+ "lat":48.7793,
+ "acc":2.5,
+ "dist":21124.85603882081,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":94.5,
+ "lon":2.3714,
+ "lat":48.7783,
+ "acc":2.5,
+ "dist":21230.482178802085,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":94.46,
+ "lon":2.3711,
+ "lat":48.7774,
+ "acc":2.5,
+ "dist":21336.108251926882,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":94.18,
+ "lon":2.3707,
+ "lat":48.7765,
+ "acc":2.5,
+ "dist":21441.73409717322,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":94.3,
+ "lon":2.3704,
+ "lat":48.7756,
+ "acc":2.5,
+ "dist":21547.360036563055,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":94.19,
+ "lon":2.3698,
+ "lat":48.7737,
+ "acc":2.5,
+ "dist":21758.611392679002,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":94.42,
+ "lon":2.3692,
+ "lat":48.7719,
+ "acc":2.5,
+ "dist":21969.864650795516,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":95.08,
+ "lon":2.3688,
+ "lat":48.7709,
+ "acc":2.5,
+ "dist":22075.489933710487,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":94.87,
+ "lon":2.3685,
+ "lat":48.77,
+ "acc":2.5,
+ "dist":22181.116395510417,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":94.13,
+ "lon":2.3679,
+ "lat":48.7681,
+ "acc":2.5,
+ "dist":22392.368796333296,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":92.49,
+ "lon":2.3673,
+ "lat":48.7663,
+ "acc":2.5,
+ "dist":22603.620768430457,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":91.26,
+ "lon":2.3666,
+ "lat":48.7644,
+ "acc":2.5,
+ "dist":22814.873557552935,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":89.48,
+ "lon":2.366,
+ "lat":48.7626,
+ "acc":2.5,
+ "dist":23026.12607885949,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":88.85,
+ "lon":2.3654,
+ "lat":48.7607,
+ "acc":2.5,
+ "dist":23237.379095064945,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":87.22,
+ "lon":2.3647,
+ "lat":48.7589,
+ "acc":2.5,
+ "dist":23448.631843355968,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":86.63,
+ "lon":2.3641,
+ "lat":48.757,
+ "acc":2.5,
+ "dist":23659.88432367676,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":86.19,
+ "lon":2.3638,
+ "lat":48.7561,
+ "acc":2.5,
+ "dist":23765.510382826124,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":86.46,
+ "lon":2.3635,
+ "lat":48.7552,
+ "acc":2.5,
+ "dist":23871.137298748323,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":79.6,
+ "lon":2.3628,
+ "lat":48.7533,
+ "acc":2.5,
+ "dist":24082.390005749803,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":85.17,
+ "lon":2.3622,
+ "lat":48.7515,
+ "acc":2.5,
+ "dist":24293.64244462614,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":84.61,
+ "lon":2.3616,
+ "lat":48.7496,
+ "acc":2.5,
+ "dist":24504.895378105193,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":84,
+ "lon":2.3609,
+ "lat":48.7478,
+ "acc":2.5,
+ "dist":24716.14912816361,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":91.3,
+ "lon":2.3603,
+ "lat":48.7459,
+ "acc":2.5,
+ "dist":24927.402609948163,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":85.05,
+ "lon":2.3597,
+ "lat":48.744,
+ "acc":2.5,
+ "dist":25138.655662392124,
+ "slope":3,
+ "color":"#00B798"
+ },
+ {
+ "z":88.53,
+ "lon":2.359,
+ "lat":48.7422,
+ "acc":2.5,
+ "dist":25349.908285441164,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":91.07,
+ "lon":2.3587,
+ "lat":48.7413,
+ "acc":2.5,
+ "dist":25455.53495820814,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":91.45,
+ "lon":2.3584,
+ "lat":48.7403,
+ "acc":2.5,
+ "dist":25561.161563859627,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":86.89,
+ "lon":2.3578,
+ "lat":48.7385,
+ "acc":2.5,
+ "dist":25772.415658612415,
+ "slope":2,
+ "color":"#00B798"
+ },
+ {
+ "z":86.72,
+ "lon":2.3571,
+ "lat":48.7366,
+ "acc":2.5,
+ "dist":25983.669323821745,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":86.58,
+ "lon":2.3565,
+ "lat":48.7348,
+ "acc":2.5,
+ "dist":26194.922720445036,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":86.76,
+ "lon":2.3559,
+ "lat":48.7329,
+ "acc":2.5,
+ "dist":26406.176611230003,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":85.42,
+ "lon":2.3552,
+ "lat":48.7311,
+ "acc":2.5,
+ "dist":26617.430394341663,
+ "slope":1,
+ "color":"#00B798"
+ },
+ {
+ "z":85.28,
+ "lon":2.3546,
+ "lat":48.7292,
+ "acc":2.5,
+ "dist":26828.68358668796,
+ "slope":0,
+ "color":"#00B798"
+ },
+ {
+ "z":84.9,
+ "lon":2.354,
+ "lat":48.7274,
+ "acc":2.5,
+ "dist":27039.93759507291,
+ "slope":0,
+ "color":"#00B798"
+ }
+ ]
+ }
+ }
\ No newline at end of file
diff --git a/samples-src/resources/data/geojson/export-route.geojson b/samples-src/resources/data/geojson/export-route.geojson
index 0087ddbf..6009a3a8 100644
--- a/samples-src/resources/data/geojson/export-route.geojson
+++ b/samples-src/resources/data/geojson/export-route.geojson
@@ -1 +1,395 @@
-{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"LineString","coordinates":[[2.588904,48.84180900000001],[2.588796,48.841804999999965]]},"properties":{"popupContent":"(1) distance : 7 m / temps : 0 min","stroke":"#00b798","stroke-opacity":0.9,"stroke-width":12},"id":1},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[2.588796,48.841804999999965],[2.5888200000000006,48.84153900000001]]},"properties":{"popupContent":"(2) distance : 29 m / temps : 0 min","stroke":"#00b798","stroke-opacity":0.9,"stroke-width":12},"id":2},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[2.5888200000000006,48.84153900000001],[2.587649,48.841488999999996],[2.586988,48.84146100000001],[2.586537,48.84144200000003]]},"properties":{"popupContent":"(3) distance : 167 m / temps : 2 min","stroke":"#00b798","stroke-opacity":0.9,"stroke-width":12},"id":3},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[2.586537,48.84144200000003],[2.5865789999999995,48.84093299999998],[2.5865770000000006,48.84091999999998],[2.586567,48.840902],[2.586539,48.84089],[2.586505,48.84088700000001],[2.586226,48.84087600000001]]},"properties":{"popupContent":"(4) distance : 85 m / temps : 1 min","stroke":"#00b798","stroke-opacity":0.9,"stroke-width":12},"id":4},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[2.586226,48.84087600000001],[2.5862319999999994,48.84079700000001],[2.586256,48.840524000000016],[2.586264,48.84043299999999]]},"properties":{"popupContent":"(5) distance : 49 m / temps : 0 min","stroke":"#00b798","stroke-opacity":0.9,"stroke-width":12},"id":5},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[2.586264,48.84043299999999],[2.586264,48.84043299999999]]},"properties":{"popupContent":"(6) distance : 0 m / temps : 0 min","stroke":"#00b798","stroke-opacity":0.9,"stroke-width":12},"id":6},{"type":"Feature","geometry":{"type":"Point","coordinates":[2.588903974691772,48.84180319210205]},"properties":{"description":"Point de départ","marker-symbol":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAmCAYAAABpuqMCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAQxSURBVFiF3ZldaBxVFMd/d2ayTRtjQpo2mlilWBEMshoj+FAERZIHIdA3iw+V1icRREFIQAKNgsUHQfBFwZI2WgWxqYUiVTDBBj9ILC5Nu2tjdjemsR+mSZNNNvsxO8eHTTRuk+zMnQmCf9iHnXvO+Z//nDvn3rmjRIT/C6zAI4ZVFRbtKDpQNCM0AvXANIo/EC4inMbmLBFZDJJaBVaZJ9Sd2HQCrwDbXHikgfewOMKPMh9ECsGIeVx1IHxEsQJeMY3iEMNy2m8aht8AtKpOhH70hADUI/TTqjr9puKvMsUE3vabxCp0MSJHdJ31xRSnVj9BVPcfOCj26U45PTHFh30c/am1EaaxuF+nKejd1WLX2gwhAPXL8T3De2XCqooKbuCu/eoiTZ6dXtch75WxaMeNENOyOXx8kHOpGMPOIudSMQ4fH8S0bBcs25Z5PMF7ZVpVL3BgQxvTsvn6+kVq6sK3jc3NRGhraKZgl9t9HGNEXvCSmvfKKJrL2nQfHVpTCEBNXZjuo0OB8JTAu5jiXmtjPL3vLl/jbnlKoNPN6spaVFbt8jXulqcEOmKSZS0yi5O+xt3ylEBHTLSsxbf913yNu+UpgU4DKE/Sc3AvczORNcfmZiL0HNwbCE8JvItxWDvJ1SjYFm0NzZzpG2RpIYbIIksLMc70Dbpsy+54SqCzzlQAY8B9Xsk8YAJ4gBHJe3HyXpkRyaN407OfN7zlVQjobjTv4BgQ1/ItjzjV9Oo46okZEBuhS8u3PDoZEDf7t9vg903zBLBfP8C/4cAnD87teclIGyFlLoVyllWh8vmQYRgVAOI4OQmFciKSFZFsMpmck1UC/Il5VNViEgHu9StkQYyb7bNNH1wrmDm3PgqWUHLBhl+SyeRV/6czLepJDAbw8fos4HTNb+/9PFv9u3YMU/X6f38/L98B7/gJ8U2uasiPEADTcRqDOozoBn7WcbzqmFOvpnYM+uTPpvP5SDBiimvP8xRPKV3DFpV7fX7HyYyD44M96xicmpqaSgd3TDQsv6J4zYvLx5nqsz/kK29qcyq5kFpafD+RSMSKf4P+CvCY+hJFRzmzmB2KPTvb+JnX8CsdzDGM8/F4/PrqseC/AggvZlGXtyipXc8kLcbCy6mdrg/6lBIbR41DYXR8cjIqIoW17IIXc17+nHnEOnS3VfhiHQt5d7HmVMK2Nn6+DHLiOGMmRLdMVI+NymjZ9Sf4abaMqZbQp01G/rnS60P5rT8duNXw1TpuGaXksmMYlxKJxLiIt23NponhKVV5a874rdZwmlYuTTvmjWdmGj9Mifl3kkpJ2hGJGY4THb9yJS4i2p0t+Gm2ggHJxMNb94eNzIAJZgEKbyxsP5kS00ZJSkG0oFQ0mZyYkKDuqIhs6u/7hyt75luM2RMPVfft3rW7bU9T0z2bxbV50+w/wF8f81R5OpwBhwAAAABJRU5ErkJggg==","marker-size":"medium"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[2.5862700454391456,48.840433323926135]},"properties":{"description":"Point d'arrivée","marker-symbol":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAmCAYAAABpuqMCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAQ+SURBVFiF3ZlLaFxlGIaf/5zJpJNpaoxpYieoCxULEYK7Lqp0IWQhFLooKNKEtNIULxWlQoJgQQWLFMEg0lQMuXgD0dRSkNJFgoy0IrYNSTpj08xMmoxNYhLUyUwyt/O5mFbjmGTOLS58d3O+y/u95/vnvx0lIvxf4HE9Y7PyU0ETwl6gAQgANcA88AswhuIsKc7TJ0k3qZVrnTmqtpGhHeFloMJERArF+3g5Qaf84UYJ7og5rPai+JhCB6xiHuEQp+Ws0zI0pwloU+0oBrAnBKAGxQBtqt1pKc46UyjgHadFrEIHXXLCbrB9MYWhNYAb3f0bBsI+u0POnpijahtpJrA/tDbCPOU8aGdSsPdWM7SzOUIAam7ntwzrnWlWfnzMYW76tYsUy9RaXYesd6aCJswI0Tw5WvuG6EyEOWUk6UyEae0bQvPkTLEUeCzBupjCyl4iqyfHydkxdh3YQ/nWnSjlp3zrTnYd2MPJ2TFTgszwFNNaDaCwRdkYLd1B/NWNa9r81Y20dAdd4SmCHTGBkh6P7bvXkd0sTxHsiKku6eH13+fIbpanCHbExEp6ZJJTjuxmeYpgXYwiVNLnysCMI7tZniLYmc1Kk/Qe3E1ycXhNW3JxmN6Du13hKYIdMWsXuRpGzsOxugYu9Q+RXgojkiS9FOZS/xDH6howcqUPhWZ4imB9B9CmyoBx4AGrZBYwCTxMl2StBFnvTJdkUbxlOc4a3rYqBOxuNHfQC0RsxZZGhAA9dgLtiTkuOYQOW7Gl0c5xMbN/+xecnTQPq89QPGM/wT9hCJ8+MvjQ81pK8yp92ZvxeMpUNuvVNK0MQAwjI15vRkTSIpKOxWK/yyoBzsS0qiq8DAP3OxWylNMWmoL1XTMresZsjIJllIzk4GosFrvl/HbmiHoCYRAHx2cBo2Pknp4v45U3befQVY/z8/sp+Q5410mKC7P+oBMhALphBNy6jHgDxU92Am+t6PFXhrcPOeRPp7LZYXfEdEkWjWeBlJWwnKEyr41s/3rFwHDAnjY0zsTj8ZR710Qfys/Aq1ZCPrlZef7iwpYF25xKRhLLyQ+i0Wi48NPtrwBt6hsofeQNJ7zhp74PfGE1/Z0ZzNC0y5FIZHa1zf2vAFmeS2vqerkuVeu5pPLa0otXa01f9CklOQw1AfnRiampkIjk1/JzX0y3/LrY7Dm0w5f/ah0Pee/GXWeiSc/G/y+NjBjGuA6h8snK8VEZLbn+uD/MbiPe7P283pd9uvh5cMH3Q8uPdd+uE7ailFw3NO1aNBqdELG2rdk0MbSqLb8p7UZVmVF/59F8Wp97Mhg4ncjqfxWplKQMkbBmGKGJ6emIiNie2TZPDHB5v+/xxrtXBnWFnhfyL1yp/ejCXMUMShIKQnmlQrFYbFJcKmJTxQBc3O9789FtmZfOzfjPvT5S068bmWvj09PTm8G16WL+S/wJLybNu1V6htkAAAAASUVORK5CYII=","marker-size":"medium"}}],"geoportail:compute":{"type":"route","points":[[2.588903974691772,48.84180319210205],null,null,null,null,null,[2.5862700454391456,48.840433323926135]],"transport":"Pieton","exclusions":[],"computation":"fastest","results":{"totalTime":304.2,"totalDistance":340.1,"bbox":{"left":2.586226,"right":2.588904,"top":48.841809,"bottom":48.840433},"routeGeometry":null,"routeInstructions":[{"duration":5.2,"distance":7.9,"code":"","instruction":"Départ","geometry":{"coordinates":[[2.588904,48.841809],[2.588796,48.841805]],"type":"LineString"}},{"duration":26.6,"distance":29.6,"code":"","instruction":"Continuer à gauche","geometry":{"coordinates":[[2.588796,48.841805],[2.58882,48.841539]],"type":"LineString"}},{"duration":151.1,"distance":167.5,"code":"","instruction":"Continuer à droite","geometry":{"coordinates":[[2.58882,48.841539],[2.587649,48.841489],[2.586988,48.841461],[2.586537,48.841442]],"type":"LineString"}},{"duration":77.4,"distance":85.7,"code":"","instruction":"Continuer à gauche","geometry":{"coordinates":[[2.586537,48.841442],[2.586579,48.840933],[2.586577,48.84092],[2.586567,48.840902],[2.586539,48.84089],[2.586505,48.840887],[2.586226,48.840876]],"type":"LineString"}},{"duration":43.9,"distance":49.4,"code":"","instruction":"Tourner à gauche sur BD COPERNIC","geometry":{"coordinates":[[2.586226,48.840876],[2.586232,48.840797],[2.586256,48.840524],[2.586264,48.840433]],"type":"LineString"}},{"duration":0,"distance":0,"code":"","instruction":"Arrivée sur BD COPERNIC","geometry":{"coordinates":[[2.586264,48.840433],[2.586264,48.840433]],"type":"LineString"}}]}}}
\ No newline at end of file
+{
+ "type":"FeatureCollection",
+ "features":[
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"LineString",
+ "coordinates":[
+ [
+ 2.588904,
+ 48.84180900000001
+ ],
+ [
+ 2.588796,
+ 48.841804999999965
+ ]
+ ]
+ },
+ "properties":{
+ "popupContent":"(1) distance : 7 m / temps : 0 min",
+ "stroke":"#00b798",
+ "stroke-opacity":0.9,
+ "stroke-width":12
+ },
+ "id":1
+ },
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"LineString",
+ "coordinates":[
+ [
+ 2.588796,
+ 48.841804999999965
+ ],
+ [
+ 2.5888200000000006,
+ 48.84153900000001
+ ]
+ ]
+ },
+ "properties":{
+ "popupContent":"(2) distance : 29 m / temps : 0 min",
+ "stroke":"#00b798",
+ "stroke-opacity":0.9,
+ "stroke-width":12
+ },
+ "id":2
+ },
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"LineString",
+ "coordinates":[
+ [
+ 2.5888200000000006,
+ 48.84153900000001
+ ],
+ [
+ 2.587649,
+ 48.841488999999996
+ ],
+ [
+ 2.586988,
+ 48.84146100000001
+ ],
+ [
+ 2.586537,
+ 48.84144200000003
+ ]
+ ]
+ },
+ "properties":{
+ "popupContent":"(3) distance : 167 m / temps : 2 min",
+ "stroke":"#00b798",
+ "stroke-opacity":0.9,
+ "stroke-width":12
+ },
+ "id":3
+ },
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"LineString",
+ "coordinates":[
+ [
+ 2.586537,
+ 48.84144200000003
+ ],
+ [
+ 2.5865789999999995,
+ 48.84093299999998
+ ],
+ [
+ 2.5865770000000006,
+ 48.84091999999998
+ ],
+ [
+ 2.586567,
+ 48.840902
+ ],
+ [
+ 2.586539,
+ 48.84089
+ ],
+ [
+ 2.586505,
+ 48.84088700000001
+ ],
+ [
+ 2.586226,
+ 48.84087600000001
+ ]
+ ]
+ },
+ "properties":{
+ "popupContent":"(4) distance : 85 m / temps : 1 min",
+ "stroke":"#00b798",
+ "stroke-opacity":0.9,
+ "stroke-width":12
+ },
+ "id":4
+ },
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"LineString",
+ "coordinates":[
+ [
+ 2.586226,
+ 48.84087600000001
+ ],
+ [
+ 2.5862319999999994,
+ 48.84079700000001
+ ],
+ [
+ 2.586256,
+ 48.840524000000016
+ ],
+ [
+ 2.586264,
+ 48.84043299999999
+ ]
+ ]
+ },
+ "properties":{
+ "popupContent":"(5) distance : 49 m / temps : 0 min",
+ "stroke":"#00b798",
+ "stroke-opacity":0.9,
+ "stroke-width":12
+ },
+ "id":5
+ },
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"LineString",
+ "coordinates":[
+ [
+ 2.586264,
+ 48.84043299999999
+ ],
+ [
+ 2.586264,
+ 48.84043299999999
+ ]
+ ]
+ },
+ "properties":{
+ "popupContent":"(6) distance : 0 m / temps : 0 min",
+ "stroke":"#00b798",
+ "stroke-opacity":0.9,
+ "stroke-width":12
+ },
+ "id":6
+ },
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"Point",
+ "coordinates":[
+ 2.588903974691772,
+ 48.84180319210205
+ ]
+ },
+ "properties":{
+ "description":"Point de départ",
+ "marker-symbol":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAmCAYAAABpuqMCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAQxSURBVFiF3ZldaBxVFMd/d2ayTRtjQpo2mlilWBEMshoj+FAERZIHIdA3iw+V1icRREFIQAKNgsUHQfBFwZI2WgWxqYUiVTDBBj9ILC5Nu2tjdjemsR+mSZNNNvsxO8eHTTRuk+zMnQmCf9iHnXvO+Z//nDvn3rmjRIT/C6zAI4ZVFRbtKDpQNCM0AvXANIo/EC4inMbmLBFZDJJaBVaZJ9Sd2HQCrwDbXHikgfewOMKPMh9ECsGIeVx1IHxEsQJeMY3iEMNy2m8aht8AtKpOhH70hADUI/TTqjr9puKvMsUE3vabxCp0MSJHdJ31xRSnVj9BVPcfOCj26U45PTHFh30c/am1EaaxuF+nKejd1WLX2gwhAPXL8T3De2XCqooKbuCu/eoiTZ6dXtch75WxaMeNENOyOXx8kHOpGMPOIudSMQ4fH8S0bBcs25Z5PMF7ZVpVL3BgQxvTsvn6+kVq6sK3jc3NRGhraKZgl9t9HGNEXvCSmvfKKJrL2nQfHVpTCEBNXZjuo0OB8JTAu5jiXmtjPL3vLl/jbnlKoNPN6spaVFbt8jXulqcEOmKSZS0yi5O+xt3ylEBHTLSsxbf913yNu+UpgU4DKE/Sc3AvczORNcfmZiL0HNwbCE8JvItxWDvJ1SjYFm0NzZzpG2RpIYbIIksLMc70Dbpsy+54SqCzzlQAY8B9Xsk8YAJ4gBHJe3HyXpkRyaN407OfN7zlVQjobjTv4BgQ1/ItjzjV9Oo46okZEBuhS8u3PDoZEDf7t9vg903zBLBfP8C/4cAnD87teclIGyFlLoVyllWh8vmQYRgVAOI4OQmFciKSFZFsMpmck1UC/Il5VNViEgHu9StkQYyb7bNNH1wrmDm3PgqWUHLBhl+SyeRV/6czLepJDAbw8fos4HTNb+/9PFv9u3YMU/X6f38/L98B7/gJ8U2uasiPEADTcRqDOozoBn7WcbzqmFOvpnYM+uTPpvP5SDBiimvP8xRPKV3DFpV7fX7HyYyD44M96xicmpqaSgd3TDQsv6J4zYvLx5nqsz/kK29qcyq5kFpafD+RSMSKf4P+CvCY+hJFRzmzmB2KPTvb+JnX8CsdzDGM8/F4/PrqseC/AggvZlGXtyipXc8kLcbCy6mdrg/6lBIbR41DYXR8cjIqIoW17IIXc17+nHnEOnS3VfhiHQt5d7HmVMK2Nn6+DHLiOGMmRLdMVI+NymjZ9Sf4abaMqZbQp01G/rnS60P5rT8duNXw1TpuGaXksmMYlxKJxLiIt23NponhKVV5a874rdZwmlYuTTvmjWdmGj9Mifl3kkpJ2hGJGY4THb9yJS4i2p0t+Gm2ggHJxMNb94eNzIAJZgEKbyxsP5kS00ZJSkG0oFQ0mZyYkKDuqIhs6u/7hyt75luM2RMPVfft3rW7bU9T0z2bxbV50+w/wF8f81R5OpwBhwAAAABJRU5ErkJggg==",
+ "marker-size":"medium"
+ }
+ },
+ {
+ "type":"Feature",
+ "geometry":{
+ "type":"Point",
+ "coordinates":[
+ 2.5862700454391456,
+ 48.840433323926135
+ ]
+ },
+ "properties":{
+ "description":"Point d'arrivée",
+ "marker-symbol":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAmCAYAAABpuqMCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAQ+SURBVFiF3ZlLaFxlGIaf/5zJpJNpaoxpYieoCxULEYK7Lqp0IWQhFLooKNKEtNIULxWlQoJgQQWLFMEg0lQMuXgD0dRSkNJFgoy0IrYNSTpj08xMmoxNYhLUyUwyt/O5mFbjmGTOLS58d3O+y/u95/vnvx0lIvxf4HE9Y7PyU0ETwl6gAQgANcA88AswhuIsKc7TJ0k3qZVrnTmqtpGhHeFloMJERArF+3g5Qaf84UYJ7og5rPai+JhCB6xiHuEQp+Ws0zI0pwloU+0oBrAnBKAGxQBtqt1pKc46UyjgHadFrEIHXXLCbrB9MYWhNYAb3f0bBsI+u0POnpijahtpJrA/tDbCPOU8aGdSsPdWM7SzOUIAam7ntwzrnWlWfnzMYW76tYsUy9RaXYesd6aCJswI0Tw5WvuG6EyEOWUk6UyEae0bQvPkTLEUeCzBupjCyl4iqyfHydkxdh3YQ/nWnSjlp3zrTnYd2MPJ2TFTgszwFNNaDaCwRdkYLd1B/NWNa9r81Y20dAdd4SmCHTGBkh6P7bvXkd0sTxHsiKku6eH13+fIbpanCHbExEp6ZJJTjuxmeYpgXYwiVNLnysCMI7tZniLYmc1Kk/Qe3E1ycXhNW3JxmN6Du13hKYIdMWsXuRpGzsOxugYu9Q+RXgojkiS9FOZS/xDH6howcqUPhWZ4imB9B9CmyoBx4AGrZBYwCTxMl2StBFnvTJdkUbxlOc4a3rYqBOxuNHfQC0RsxZZGhAA9dgLtiTkuOYQOW7Gl0c5xMbN/+xecnTQPq89QPGM/wT9hCJ8+MvjQ81pK8yp92ZvxeMpUNuvVNK0MQAwjI15vRkTSIpKOxWK/yyoBzsS0qiq8DAP3OxWylNMWmoL1XTMresZsjIJllIzk4GosFrvl/HbmiHoCYRAHx2cBo2Pknp4v45U3befQVY/z8/sp+Q5410mKC7P+oBMhALphBNy6jHgDxU92Am+t6PFXhrcPOeRPp7LZYXfEdEkWjWeBlJWwnKEyr41s/3rFwHDAnjY0zsTj8ZR710Qfys/Aq1ZCPrlZef7iwpYF25xKRhLLyQ+i0Wi48NPtrwBt6hsofeQNJ7zhp74PfGE1/Z0ZzNC0y5FIZHa1zf2vAFmeS2vqerkuVeu5pPLa0otXa01f9CklOQw1AfnRiampkIjk1/JzX0y3/LrY7Dm0w5f/ah0Pee/GXWeiSc/G/y+NjBjGuA6h8snK8VEZLbn+uD/MbiPe7P283pd9uvh5cMH3Q8uPdd+uE7ailFw3NO1aNBqdELG2rdk0MbSqLb8p7UZVmVF/59F8Wp97Mhg4ncjqfxWplKQMkbBmGKGJ6emIiNie2TZPDHB5v+/xxrtXBnWFnhfyL1yp/ejCXMUMShIKQnmlQrFYbFJcKmJTxQBc3O9789FtmZfOzfjPvT5S068bmWvj09PTm8G16WL+S/wJLybNu1V6htkAAAAASUVORK5CYII=",
+ "marker-size":"medium"
+ }
+ }
+ ],
+ "geoportail:compute":{
+ "type":"route",
+ "points":[
+ [
+ 2.588903974691772,
+ 48.84180319210205
+ ],
+ null,
+ null,
+ null,
+ null,
+ null,
+ [
+ 2.5862700454391456,
+ 48.840433323926135
+ ]
+ ],
+ "transport":"Pieton",
+ "exclusions":[
+
+ ],
+ "computation":"fastest",
+ "results":{
+ "totalTime":304.2,
+ "totalDistance":340.1,
+ "bbox":{
+ "left":2.586226,
+ "right":2.588904,
+ "top":48.841809,
+ "bottom":48.840433
+ },
+ "routeGeometry":null,
+ "routeInstructions":[
+ {
+ "duration":5.2,
+ "distance":7.9,
+ "code":"",
+ "instruction":"Départ",
+ "geometry":{
+ "coordinates":[
+ [
+ 2.588904,
+ 48.841809
+ ],
+ [
+ 2.588796,
+ 48.841805
+ ]
+ ],
+ "type":"LineString"
+ }
+ },
+ {
+ "duration":26.6,
+ "distance":29.6,
+ "code":"",
+ "instruction":"Continuer à gauche",
+ "geometry":{
+ "coordinates":[
+ [
+ 2.588796,
+ 48.841805
+ ],
+ [
+ 2.58882,
+ 48.841539
+ ]
+ ],
+ "type":"LineString"
+ }
+ },
+ {
+ "duration":151.1,
+ "distance":167.5,
+ "code":"",
+ "instruction":"Continuer à droite",
+ "geometry":{
+ "coordinates":[
+ [
+ 2.58882,
+ 48.841539
+ ],
+ [
+ 2.587649,
+ 48.841489
+ ],
+ [
+ 2.586988,
+ 48.841461
+ ],
+ [
+ 2.586537,
+ 48.841442
+ ]
+ ],
+ "type":"LineString"
+ }
+ },
+ {
+ "duration":77.4,
+ "distance":85.7,
+ "code":"",
+ "instruction":"Continuer à gauche",
+ "geometry":{
+ "coordinates":[
+ [
+ 2.586537,
+ 48.841442
+ ],
+ [
+ 2.586579,
+ 48.840933
+ ],
+ [
+ 2.586577,
+ 48.84092
+ ],
+ [
+ 2.586567,
+ 48.840902
+ ],
+ [
+ 2.586539,
+ 48.84089
+ ],
+ [
+ 2.586505,
+ 48.840887
+ ],
+ [
+ 2.586226,
+ 48.840876
+ ]
+ ],
+ "type":"LineString"
+ }
+ },
+ {
+ "duration":43.9,
+ "distance":49.4,
+ "code":"",
+ "instruction":"Tourner à gauche sur BD COPERNIC",
+ "geometry":{
+ "coordinates":[
+ [
+ 2.586226,
+ 48.840876
+ ],
+ [
+ 2.586232,
+ 48.840797
+ ],
+ [
+ 2.586256,
+ 48.840524
+ ],
+ [
+ 2.586264,
+ 48.840433
+ ]
+ ],
+ "type":"LineString"
+ }
+ },
+ {
+ "duration":0,
+ "distance":0,
+ "code":"",
+ "instruction":"Arrivée sur BD COPERNIC",
+ "geometry":{
+ "coordinates":[
+ [
+ 2.586264,
+ 48.840433
+ ],
+ [
+ 2.586264,
+ 48.840433
+ ]
+ ],
+ "type":"LineString"
+ }
+ }
+ ]
+ }
+ }
+ }
\ No newline at end of file
diff --git a/src/OpenLayers/Controls/ElevationPath.js b/src/OpenLayers/Controls/ElevationPath.js
index 87362b9a..bf62584f 100644
--- a/src/OpenLayers/Controls/ElevationPath.js
+++ b/src/OpenLayers/Controls/ElevationPath.js
@@ -714,9 +714,11 @@ var ElevationPath = (function (Control) {
// picto
this._showContainer.checked = false;
+ // this._removeMeasure();
this._removeProfile();
- this._removeMeasure();
this._removeMeasureInteraction(map);
+
+ this.setLayer();
};
/**
@@ -1124,10 +1126,10 @@ var ElevationPath = (function (Control) {
return;
}
- if (this._measureVector) {
- map.removeLayer(this._measureVector);
- this._measureVector = null;
- }
+ // if (this._measureVector) {
+ // map.removeLayer(this._measureVector);
+ // this._measureVector = null;
+ // }
if (this._measureDraw) {
map.removeInteraction(this._measureDraw);
diff --git a/src/OpenLayers/Controls/Isocurve.js b/src/OpenLayers/Controls/Isocurve.js
index 280a366d..3a812d48 100644
--- a/src/OpenLayers/Controls/Isocurve.js
+++ b/src/OpenLayers/Controls/Isocurve.js
@@ -445,6 +445,26 @@ var Isocurve = (function (Control) {
? document.getElementById("GPisochronDirectionSelect-" + this._uid).selectedIndex = 0 : document.getElementById("GPisochronDirectionSelect-" + this._uid).selectedIndex = 1;
};
+ /**
+ * Clean UI : reinit control
+ */
+ Isocurve.prototype.clean = function () {
+ this._clearIsoInputs();
+ // INFO
+ // le comportement est surchargé, ceci supprime la couche !?
+ // cf. _createIsoPanelFormPointElement()
+ this._originPoint.clearResults();
+ document.getElementById("GPlocationPoint_1-" + this._uid).style.cssText = "";
+ document.getElementById("GPlocationOriginCoords_1-" + this._uid).value = "";
+ document.getElementById("GPlocationOrigin_1-" + this._uid).value = "";
+ document.getElementById("GPlocationPoint_1-" + this._uid).style.cssText = "";
+ document.getElementById("GPlocationOriginPointer_1-" + this._uid).checked = false;
+ document.getElementById("GPlocationOrigin_1-" + this._uid).className = "GPlocationOriginVisible";
+ document.getElementById("GPlocationOriginCoords_1-" + this._uid).className = "GPlocationOriginHidden";
+ this._currentIsoResults = null;
+ this.setLayer();
+ };
+
// ################################################################### //
// ##################### init component ############################## //
// ################################################################### //
diff --git a/src/OpenLayers/Controls/Route.js b/src/OpenLayers/Controls/Route.js
index a1dcbad2..d1c3b225 100644
--- a/src/OpenLayers/Controls/Route.js
+++ b/src/OpenLayers/Controls/Route.js
@@ -462,6 +462,28 @@ var Route = (function (Control) {
this._resultsRouteContainer.className = "";
};
+ /**
+ * Clean UI : reinit control
+ */
+ Route.prototype.clean = function () {
+ this._currentTransport = null;
+ this._currentExclusions = [];
+ this._currentComputation = null;
+
+ for (var i = 0; i < this._currentPoints.length; i++) {
+ this._currentPoints[i].clear();
+ }
+
+ this._removeRouteStepLocations();
+ this._clearRouteInputOptions();
+ this._clearRouteResultsDetails();
+
+ this.setLayer();
+
+ this._formRouteContainer.className = "";
+ this._resultsRouteContainer.className = "GProuteComponentHidden";
+ };
+
// ################################################################### //
// ##################### init component ############################## //
// ################################################################### //