@panoramax/web-viewer 3.0.2-develop-a8ea8e60-develop-e3ac47c8 → 3.0.2-develop-a8ea8e60-develop-3c6e8805
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/build/editor.html +1 -1
- package/build/index.css +5 -5
- package/build/index.css.map +1 -1
- package/build/index.js +4 -4
- package/build/index.js.map +1 -1
- package/build/viewer.html +1 -1
- package/docs/04_Advanced_examples.md +3 -1
- package/package.json +6 -6
- package/public/editor.html +3 -1
- package/public/viewer.html +3 -1
- package/src/translations/en.json +2 -0
- package/src/translations/fr.json +2 -0
- package/src/translations/ko.json +1 -0
- package/src/viewer/Widgets.js +13 -3
- package/tests/viewer/__snapshots__/Widgets.test.js.snap +2 -2
package/build/viewer.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><title>Panoramax Web Viewer</title><style>#viewer{position:relative;width:95%;margin:2.5%;height:400px}#viewer.fullpage{position:fixed;top:0;bottom:0;left:0;right:0;height:unset;width:unset;margin:0}</style><script defer="defer" src="index.js"></script><link href="index.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="viewer" class="fullpage"></div><script>var viewer,servers={meta:"https://api.panoramax.xyz/api",ign:"https://panoramax.ign.fr/api",osm:"https://panoramax.openstreetmap.fr/api",local:"http://localhost:5000/api",dev:"https://panoramax.codeureusesenliberte.fr/api"},urlParams=new URLSearchParams(window.location.search),server=servers[urlParams.get("server")||"meta"];window.onload=()=>{viewer=new Panoramax.Viewer("viewer",server,{widgets:{iframeBaseURL:"https://api.panoramax.xyz/"},map:{startWide:!0,raster:{type:"raster",tiles:["https://
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><title>Panoramax Web Viewer</title><style>#viewer{position:relative;width:95%;margin:2.5%;height:400px}#viewer.fullpage{position:fixed;top:0;bottom:0;left:0;right:0;height:unset;width:unset;margin:0}</style><script defer="defer" src="index.js"></script><link href="index.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="viewer" class="fullpage"></div><script>var viewer,servers={meta:"https://api.panoramax.xyz/api",ign:"https://panoramax.ign.fr/api",osm:"https://panoramax.openstreetmap.fr/api",local:"http://localhost:5000/api",dev:"https://panoramax.codeureusesenliberte.fr/api"},urlParams=new URLSearchParams(window.location.search),server=servers[urlParams.get("server")||"meta"];window.onload=()=>{viewer=new Panoramax.Viewer("viewer",server,{widgets:{iframeBaseURL:"https://api.panoramax.xyz/"},map:{startWide:!0,raster:{type:"raster",tiles:["https://data.geopf.fr/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=ORTHOIMAGERY.ORTHOPHOTOS&STYLE=normal&FORMAT=image/jpeg&TILEMATRIXSET=PM_0_21&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}"],minzoom:0,maxzoom:21,attribution:"© IGN",tileSize:256}}})}</script></body></html>
|
|
@@ -65,8 +65,10 @@ var viewer = new Panoramax.Viewer(
|
|
|
65
65
|
raster: {
|
|
66
66
|
type: "raster",
|
|
67
67
|
tiles: [
|
|
68
|
-
"https://
|
|
68
|
+
"https://data.geopf.fr/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=ORTHOIMAGERY.ORTHOPHOTOS&STYLE=normal&FORMAT=image/jpeg&TILEMATRIXSET=PM_0_21&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}"
|
|
69
69
|
],
|
|
70
|
+
minzoom: 0,
|
|
71
|
+
maxzoom: 21,
|
|
70
72
|
attribution: "© IGN",
|
|
71
73
|
tileSize: 256
|
|
72
74
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panoramax/web-viewer",
|
|
3
|
-
"version": "3.0.2-develop-a8ea8e60-develop-
|
|
3
|
+
"version": "3.0.2-develop-a8ea8e60-develop-3c6e8805",
|
|
4
4
|
"description": "Panoramax web viewer for geolocated pictures",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"author": "Panoramax team",
|
|
@@ -90,11 +90,11 @@
|
|
|
90
90
|
"dependencies": {
|
|
91
91
|
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
|
92
92
|
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
|
93
|
-
"@photo-sphere-viewer/core": "5.10.
|
|
94
|
-
"@photo-sphere-viewer/equirectangular-tiles-adapter": "5.10.
|
|
95
|
-
"@photo-sphere-viewer/gallery-plugin": "5.10.
|
|
96
|
-
"@photo-sphere-viewer/markers-plugin": "5.10.
|
|
97
|
-
"@photo-sphere-viewer/virtual-tour-plugin": "5.10.
|
|
93
|
+
"@photo-sphere-viewer/core": "5.10.1",
|
|
94
|
+
"@photo-sphere-viewer/equirectangular-tiles-adapter": "5.10.1",
|
|
95
|
+
"@photo-sphere-viewer/gallery-plugin": "5.10.1",
|
|
96
|
+
"@photo-sphere-viewer/markers-plugin": "5.10.1",
|
|
97
|
+
"@photo-sphere-viewer/virtual-tour-plugin": "5.10.1",
|
|
98
98
|
"documentation": "^14.0.1",
|
|
99
99
|
"maplibre-gl": "^3.6.2",
|
|
100
100
|
"pmtiles": "^2.11.0"
|
package/public/editor.html
CHANGED
|
@@ -41,8 +41,10 @@
|
|
|
41
41
|
raster: {
|
|
42
42
|
type: "raster",
|
|
43
43
|
tiles: [
|
|
44
|
-
"https://
|
|
44
|
+
"https://data.geopf.fr/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=ORTHOIMAGERY.ORTHOPHOTOS&STYLE=normal&FORMAT=image/jpeg&TILEMATRIXSET=PM_0_21&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}"
|
|
45
45
|
],
|
|
46
|
+
minzoom: 0,
|
|
47
|
+
maxzoom: 21,
|
|
46
48
|
attribution: "© IGN",
|
|
47
49
|
tileSize: 256
|
|
48
50
|
}
|
package/public/viewer.html
CHANGED
|
@@ -53,8 +53,10 @@
|
|
|
53
53
|
raster: {
|
|
54
54
|
type: "raster",
|
|
55
55
|
tiles: [
|
|
56
|
-
"https://
|
|
56
|
+
"https://data.geopf.fr/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=ORTHOIMAGERY.ORTHOPHOTOS&STYLE=normal&FORMAT=image/jpeg&TILEMATRIXSET=PM_0_21&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}"
|
|
57
57
|
],
|
|
58
|
+
minzoom: 0,
|
|
59
|
+
maxzoom: 21,
|
|
58
60
|
attribution: "© IGN",
|
|
59
61
|
tileSize: 256
|
|
60
62
|
}
|
package/src/translations/en.json
CHANGED
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"sequence_more": "More play options",
|
|
51
51
|
"sequence_speed": "Player speed",
|
|
52
52
|
"legend_license": "License: {l}",
|
|
53
|
+
"legend_title": "Show details of picture",
|
|
53
54
|
"edit_osm": "Edit OSM",
|
|
54
55
|
"id": "iD",
|
|
55
56
|
"josm": "JOSM",
|
|
@@ -152,6 +153,7 @@
|
|
|
152
153
|
"report_email": "Your email",
|
|
153
154
|
"report_email_placeholder": "Optional",
|
|
154
155
|
"report_submit": "Submit",
|
|
156
|
+
"report_wait": "Sending report...",
|
|
155
157
|
"report_success": "Report has been successfully sent. It will be reviewed as soon as possible.",
|
|
156
158
|
"report_failure": "An error occurred when creating report: {e}. Please try again later."
|
|
157
159
|
},
|
package/src/translations/fr.json
CHANGED
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"sequence_more": "Plus d'options de lecture",
|
|
51
51
|
"sequence_speed": "Vitesse de lecture",
|
|
52
52
|
"legend_license": "Licence : {l}",
|
|
53
|
+
"legend_title": "Afficher les détails de l'image",
|
|
53
54
|
"edit_osm": "Contribuer sur OSM",
|
|
54
55
|
"id": "iD",
|
|
55
56
|
"josm": "JOSM",
|
|
@@ -152,6 +153,7 @@
|
|
|
152
153
|
"report_email": "Votre email",
|
|
153
154
|
"report_email_placeholder": "Optionnel",
|
|
154
155
|
"report_submit": "Envoyer",
|
|
156
|
+
"report_wait": "Envoi du signalement en cours...",
|
|
155
157
|
"report_success": "Le signalement a été envoyé avec succès. Il sera examiné dès que possible.",
|
|
156
158
|
"report_failure": "Une erreur est survenue lors de la création du signalement : {e}. Veuillez réessayer plus tard."
|
|
157
159
|
},
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/src/viewer/Widgets.js
CHANGED
|
@@ -393,6 +393,7 @@ export default class Widgets {
|
|
|
393
393
|
}
|
|
394
394
|
|
|
395
395
|
// Put appropriate legend according to view focus
|
|
396
|
+
mainLegend.title = "";
|
|
396
397
|
if(focusOnMap) {
|
|
397
398
|
mainLegend.innerHTML = mapLegend;
|
|
398
399
|
if(isInIframe()) {
|
|
@@ -408,6 +409,7 @@ export default class Widgets {
|
|
|
408
409
|
if(picMetaBtn) {
|
|
409
410
|
mainLegend.appendChild(picMetaBtn);
|
|
410
411
|
mainLegend.style.cursor = "pointer";
|
|
412
|
+
mainLegend.title = this._t.gvs.legend_title;
|
|
411
413
|
mainLegend.onclick = isInIframe() ?
|
|
412
414
|
() => window.open(window.location.href, "_blank")
|
|
413
415
|
: this._showPictureMetadataPopup.bind(this);
|
|
@@ -624,14 +626,22 @@ export default class Widgets {
|
|
|
624
626
|
// Submit handler
|
|
625
627
|
form.addEventListener("submit", e => {
|
|
626
628
|
e.preventDefault();
|
|
627
|
-
|
|
628
|
-
this._viewer._api.sendReport({
|
|
629
|
+
const params = {
|
|
629
630
|
issue: issueSelect.value,
|
|
630
631
|
picture_id: picSeqInput.checked ? null : picMeta.id,
|
|
631
632
|
reporter_comments: detailsTextarea.value,
|
|
632
633
|
reporter_email: emailInput?.value,
|
|
633
634
|
sequence_id: picMeta.sequence.id
|
|
634
|
-
}
|
|
635
|
+
};
|
|
636
|
+
|
|
637
|
+
// Show loader
|
|
638
|
+
this._viewer.setPopup(true, [
|
|
639
|
+
createHeader("h4", `${fat(faTriangleExclamation)} ${this._t.gvs.report}`),
|
|
640
|
+
document.createTextNode(this._t.gvs.report_wait)
|
|
641
|
+
]);
|
|
642
|
+
|
|
643
|
+
// Call API
|
|
644
|
+
this._viewer._api.sendReport(params).then(() => {
|
|
635
645
|
this._viewer.setPopup(true, [
|
|
636
646
|
createHeader("h4", `${fat(faTriangleExclamation)} ${this._t.gvs.report}`),
|
|
637
647
|
document.createTextNode(this._t.gvs.report_success)
|
|
@@ -324,7 +324,7 @@ exports[`constructor works 1`] = `
|
|
|
324
324
|
<button title=\\"Augmenter le contraste de l'image\\" id=\\"gvs-player-contrast\\">
|
|
325
325
|
<svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"lightbulb\\" class=\\"svg-inline--fa fa-lightbulb\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 384 512\\"><path fill=\\"currentColor\\" d=\\"M272 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0c19.8 27.1 39.7 54.4 49.2 86.2H272zM192 512c44.2 0 80-35.8 80-80V416H112v16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z\\"></path></svg>
|
|
326
326
|
</button>
|
|
327
|
-
</div><button id=\\"gvs-player-more\\" class=\\"gvs-btn gvs-widget-bg gvs-xs-hidden\\" title=\\"Plus d'options de lecture\\"><svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"ellipsis-vertical\\" class=\\"svg-inline--fa fa-ellipsis-vertical\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 128 512\\"><path fill=\\"currentColor\\" d=\\"M64 360a56 56 0 1 0 0 112 56 56 0 1 0 0-112zm0-160a56 56 0 1 0 0 112 56 56 0 1 0 0-112zM120 96A56 56 0 1 0 8 96a56 56 0 1 0 112 0z\\"></path></svg></button></div></div><div id=\\"gvs-corner-main-top-middle\\" class=\\"gvs-corner\\"></div><div id=\\"gvs-corner-main-top-right\\" class=\\"gvs-corner\\"></div></div><div id=\\"gvs-corner-main-bottom\\" class=\\"gvs-corner-space\\"><div id=\\"gvs-corner-main-bottom-left\\" class=\\"gvs-corner\\"><div id=\\"gvs-widget-legend\\" class=\\"gvs-group gvs-widget-bg\\"><a href=\\"https://panoramax.fr/\\" target=\\"_blank\\">Panoramax</a></div></div><div id=\\"gvs-corner-main-bottom-middle\\" class=\\"gvs-corner\\"></div><div id=\\"gvs-corner-main-bottom-right\\" class=\\"gvs-corner\\"><div id=\\"gvs-widget-share\\" class=\\"gvs-group gvs-group-large gvs-group-btnpanel gvs-mobile-hidden gvs-print-hidden\\"><button id=\\"gvs-share\\" class=\\"gvs-btn gvs-widget-bg gvs-btn-large\\" title=\\"Partager\\"><svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"share-nodes\\" class=\\"svg-inline--fa fa-share-nodes\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 448 512\\"><path fill=\\"currentColor\\" d=\\"M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z\\"></path></svg></button><div id=\\"gvs-share-panel\\" class=\\"gvs-panel gvs-widget-bg gvs-hidden\\">
|
|
327
|
+
</div><button id=\\"gvs-player-more\\" class=\\"gvs-btn gvs-widget-bg gvs-xs-hidden\\" title=\\"Plus d'options de lecture\\"><svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"ellipsis-vertical\\" class=\\"svg-inline--fa fa-ellipsis-vertical\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 128 512\\"><path fill=\\"currentColor\\" d=\\"M64 360a56 56 0 1 0 0 112 56 56 0 1 0 0-112zm0-160a56 56 0 1 0 0 112 56 56 0 1 0 0-112zM120 96A56 56 0 1 0 8 96a56 56 0 1 0 112 0z\\"></path></svg></button></div></div><div id=\\"gvs-corner-main-top-middle\\" class=\\"gvs-corner\\"></div><div id=\\"gvs-corner-main-top-right\\" class=\\"gvs-corner\\"></div></div><div id=\\"gvs-corner-main-bottom\\" class=\\"gvs-corner-space\\"><div id=\\"gvs-corner-main-bottom-left\\" class=\\"gvs-corner\\"><div id=\\"gvs-widget-legend\\" class=\\"gvs-group gvs-widget-bg\\" title=\\"\\"><a href=\\"https://panoramax.fr/\\" target=\\"_blank\\">Panoramax</a></div></div><div id=\\"gvs-corner-main-bottom-middle\\" class=\\"gvs-corner\\"></div><div id=\\"gvs-corner-main-bottom-right\\" class=\\"gvs-corner\\"><div id=\\"gvs-widget-share\\" class=\\"gvs-group gvs-group-large gvs-group-btnpanel gvs-mobile-hidden gvs-print-hidden\\"><button id=\\"gvs-share\\" class=\\"gvs-btn gvs-widget-bg gvs-btn-large\\" title=\\"Partager\\"><svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"share-nodes\\" class=\\"svg-inline--fa fa-share-nodes\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 448 512\\"><path fill=\\"currentColor\\" d=\\"M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z\\"></path></svg></button><div id=\\"gvs-share-panel\\" class=\\"gvs-panel gvs-widget-bg gvs-hidden\\">
|
|
328
328
|
<div class=\\"gvs-hidden\\">
|
|
329
329
|
<p id=\\"gvs-share-license\\" style=\\"margin: 0 0 10px 0;\\"></p>
|
|
330
330
|
</div>
|
|
@@ -362,7 +362,7 @@ exports[`constructor works with iframeBaseURL option 1`] = `
|
|
|
362
362
|
<button title=\\"Augmenter le contraste de l'image\\" id=\\"gvs-player-contrast\\">
|
|
363
363
|
<svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"lightbulb\\" class=\\"svg-inline--fa fa-lightbulb\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 384 512\\"><path fill=\\"currentColor\\" d=\\"M272 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0c19.8 27.1 39.7 54.4 49.2 86.2H272zM192 512c44.2 0 80-35.8 80-80V416H112v16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z\\"></path></svg>
|
|
364
364
|
</button>
|
|
365
|
-
</div><button id=\\"gvs-player-more\\" class=\\"gvs-btn gvs-widget-bg gvs-xs-hidden\\" title=\\"Plus d'options de lecture\\"><svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"ellipsis-vertical\\" class=\\"svg-inline--fa fa-ellipsis-vertical\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 128 512\\"><path fill=\\"currentColor\\" d=\\"M64 360a56 56 0 1 0 0 112 56 56 0 1 0 0-112zm0-160a56 56 0 1 0 0 112 56 56 0 1 0 0-112zM120 96A56 56 0 1 0 8 96a56 56 0 1 0 112 0z\\"></path></svg></button></div></div><div id=\\"gvs-corner-main-top-middle\\" class=\\"gvs-corner\\"></div><div id=\\"gvs-corner-main-top-right\\" class=\\"gvs-corner\\"></div></div><div id=\\"gvs-corner-main-bottom\\" class=\\"gvs-corner-space\\"><div id=\\"gvs-corner-main-bottom-left\\" class=\\"gvs-corner\\"><div id=\\"gvs-widget-legend\\" class=\\"gvs-group gvs-widget-bg\\"><a href=\\"https://panoramax.fr/\\" target=\\"_blank\\">Panoramax</a></div></div><div id=\\"gvs-corner-main-bottom-middle\\" class=\\"gvs-corner\\"></div><div id=\\"gvs-corner-main-bottom-right\\" class=\\"gvs-corner\\"><div id=\\"gvs-widget-share\\" class=\\"gvs-group gvs-group-large gvs-group-btnpanel gvs-mobile-hidden gvs-print-hidden\\"><button id=\\"gvs-share\\" class=\\"gvs-btn gvs-widget-bg gvs-btn-large\\" title=\\"Partager\\"><svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"share-nodes\\" class=\\"svg-inline--fa fa-share-nodes\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 448 512\\"><path fill=\\"currentColor\\" d=\\"M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z\\"></path></svg></button><div id=\\"gvs-share-panel\\" class=\\"gvs-panel gvs-widget-bg gvs-hidden\\">
|
|
365
|
+
</div><button id=\\"gvs-player-more\\" class=\\"gvs-btn gvs-widget-bg gvs-xs-hidden\\" title=\\"Plus d'options de lecture\\"><svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"ellipsis-vertical\\" class=\\"svg-inline--fa fa-ellipsis-vertical\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 128 512\\"><path fill=\\"currentColor\\" d=\\"M64 360a56 56 0 1 0 0 112 56 56 0 1 0 0-112zm0-160a56 56 0 1 0 0 112 56 56 0 1 0 0-112zM120 96A56 56 0 1 0 8 96a56 56 0 1 0 112 0z\\"></path></svg></button></div></div><div id=\\"gvs-corner-main-top-middle\\" class=\\"gvs-corner\\"></div><div id=\\"gvs-corner-main-top-right\\" class=\\"gvs-corner\\"></div></div><div id=\\"gvs-corner-main-bottom\\" class=\\"gvs-corner-space\\"><div id=\\"gvs-corner-main-bottom-left\\" class=\\"gvs-corner\\"><div id=\\"gvs-widget-legend\\" class=\\"gvs-group gvs-widget-bg\\" title=\\"\\"><a href=\\"https://panoramax.fr/\\" target=\\"_blank\\">Panoramax</a></div></div><div id=\\"gvs-corner-main-bottom-middle\\" class=\\"gvs-corner\\"></div><div id=\\"gvs-corner-main-bottom-right\\" class=\\"gvs-corner\\"><div id=\\"gvs-widget-share\\" class=\\"gvs-group gvs-group-large gvs-group-btnpanel gvs-mobile-hidden gvs-print-hidden\\"><button id=\\"gvs-share\\" class=\\"gvs-btn gvs-widget-bg gvs-btn-large\\" title=\\"Partager\\"><svg aria-hidden=\\"true\\" focusable=\\"false\\" data-prefix=\\"fas\\" data-icon=\\"share-nodes\\" class=\\"svg-inline--fa fa-share-nodes\\" role=\\"img\\" xmlns=\\"http://www.w3.org/2000/svg\\" viewBox=\\"0 0 448 512\\"><path fill=\\"currentColor\\" d=\\"M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z\\"></path></svg></button><div id=\\"gvs-share-panel\\" class=\\"gvs-panel gvs-widget-bg gvs-hidden\\">
|
|
366
366
|
<div class=\\"gvs-hidden\\">
|
|
367
367
|
<p id=\\"gvs-share-license\\" style=\\"margin: 0 0 10px 0;\\"></p>
|
|
368
368
|
</div>
|