@panoramax/web-viewer 4.0.1-develop-955ebafc → 4.0.1-develop-6b70d6bf
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 +2 -0
- package/build/index.js +18 -18
- package/build/index.js.map +1 -1
- package/config/jest/mocks.js +2 -1
- package/docs/09_Develop.md +4 -0
- package/docs/reference/components/ui/Map.md +13 -0
- package/docs/reference/components/ui/MapMore.md +13 -0
- package/package.json +1 -1
- package/src/components/core/CoverageMap.js +2 -2
- package/src/components/core/Viewer.js +1 -1
- package/src/components/ui/Map.js +35 -4
- package/src/components/ui/widgets/OSMEditors.js +2 -2
- package/src/utils/InitParameters.js +2 -2
- package/src/utils/geocoder.js +5 -3
- package/src/utils/index.js +2 -1
- package/src/utils/services.js +57 -0
- package/src/utils/utils.js +5 -5
- package/tests/components/ui/Map.test.js +7 -3
- package/tests/utils/InitParameters.test.js +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -12,11 +12,13 @@ Before _2.0.0_, Viewer was embed in the [API repository](https://gitlab.com/pano
|
|
|
12
12
|
|
|
13
13
|
- Player buttons are only shown if a picture is not single in its sequence.*
|
|
14
14
|
- Do not query reverse geocoding at all when sequence is playing.
|
|
15
|
+
- URL to third-party services are grouped into a new `utils/services.js` file for simpler tweaking (thanks to [Brad Hards](https://gitlab.com/bradh)).
|
|
15
16
|
|
|
16
17
|
### Fixed
|
|
17
18
|
|
|
18
19
|
- In report form, using space key was starting sequence play.
|
|
19
20
|
- When going to a another flat picture sequence, view was not always moved to display picture center.
|
|
21
|
+
- Make sure MapLibre layers are loaded before applying filters (to prevent date filters not being applied on user layers).
|
|
20
22
|
|
|
21
23
|
## [4.0.1] - 2025-05-05
|
|
22
24
|
|