@panoramax/web-viewer 3.2.2-develop-43e56902 → 3.2.2-develop-e0cee138
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 +8 -0
- package/build/editor.html +1 -1
- package/build/index.js +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/public/editor.html +3 -3
- package/src/Editor.js +34 -34
- package/src/utils/API.js +18 -2
- package/src/viewer/URLHash.js +8 -0
- package/tests/viewer/URLHash.test.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@ Before _2.0.0_, Viewer was embed in the [API repository](https://gitlab.com/pano
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- In Viewer, when popup metadata is showing up, a click on _Back_ web browser button closes it.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- In Editor, long sequences were not showing up at all.
|
|
18
|
+
|
|
11
19
|
## [3.2.2] - 2025-01-06
|
|
12
20
|
|
|
13
21
|
### Added
|
package/build/editor.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 Editor</title><style>#editor{position:relative;width:95%;margin:2.5%;height:400px}#editor.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="editor" class="fullpage"></div><script>var editor;window.onload=()=>{editor=new Panoramax.Editor("editor","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 Editor</title><style>#editor{position:relative;width:95%;margin:2.5%;height:400px}#editor.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="editor" class="fullpage"></div><script>var editor;window.onload=()=>{editor=new Panoramax.Editor("editor","https://panoramax.openstreetmap.fr/api",{selectedSequence:"ecfe4b2c-0acd-4d3a-a10d-c3e6818755c8",selectedPicture:"329af5c6-4761-4a6d-9c1e-674fd6daa8b6",background:"aerial",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>
|