@open-pioneer/scale-viewer 0.9.0 → 0.10.0-dev.20250324141112

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 CHANGED
@@ -1,5 +1,29 @@
1
1
  # @open-pioneer/scale-viewer
2
2
 
3
+ ## 0.10.0-dev.20250324141112
4
+
5
+ ### Minor Changes
6
+
7
+ - 193068a: Deprecate the `mapId` property on React components.
8
+ Use the `MapModel` directly instead to pass a reference to the map.
9
+
10
+ Example:
11
+
12
+ ```tsx
13
+ // Default map for entire component tree
14
+ <DefaultMapProvider map={mapModel}>
15
+ <Toc />
16
+ </DefaultMapProvider>
17
+
18
+ // Map for specific component
19
+ <Toc map={mapModel} />
20
+ ```
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [193068a]
25
+ - @open-pioneer/map@0.10.0-dev.20250324141112
26
+
3
27
  ## 0.9.0
4
28
 
5
29
  ### Minor Changes
package/README.md CHANGED
@@ -4,10 +4,12 @@ This package provides a UI component to show the actual map scale to the user.
4
4
 
5
5
  ## Usage
6
6
 
7
- To integrate the scale viewer in your app, insert the following snippet and reference a map ID:
7
+ To integrate the scale viewer in your app, insert the following snippet (and reference a map):
8
8
 
9
9
  ```jsx
10
- <ScaleViewer mapId="map_id" />
10
+ <ScaleViewer
11
+ map={map}
12
+ /> /* instead of passing the map, the `DefaultMapProvider` can alternatively be used */
11
13
  ```
12
14
 
13
15
  ## License
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@open-pioneer/scale-viewer",
4
- "version": "0.9.0",
4
+ "version": "0.10.0-dev.20250324141112",
5
5
  "description": "This package provides a UI component to show the actual map scale to the user.",
6
6
  "keywords": [
7
7
  "open-pioneer-trails"
@@ -19,7 +19,7 @@
19
19
  "@open-pioneer/runtime": "^3.0.0",
20
20
  "@open-pioneer/reactivity": "^3.0.0",
21
21
  "react": "^19.0.0",
22
- "@open-pioneer/map": "^0.9.0"
22
+ "@open-pioneer/map": "^0.10.0-dev.20250324141112"
23
23
  },
24
24
  "exports": {
25
25
  "./package.json": "./package.json",