@open-pioneer/map-navigation 0.9.0-dev.20250220091855 → 0.9.0
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 +117 -111
- package/History.js.map +1 -1
- package/InitialExtent.js.map +1 -1
- package/README.md +3 -3
- package/ViewHistoryModel.js.map +1 -1
- package/Zoom.js.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
# @open-pioneer/map-navigation
|
|
2
2
|
|
|
3
|
-
## 0.9.0
|
|
3
|
+
## 0.9.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- cb94c75: update dependencies
|
|
8
|
+
- 8dc793e: Add `ButtonProps` to `ToolButton` in `@open-pioneer/geolocation` and `@open-pioneer/map-navigation`
|
|
8
9
|
|
|
9
10
|
Example:
|
|
10
11
|
|
|
@@ -12,200 +13,205 @@
|
|
|
12
13
|
|
|
13
14
|
### Patch Changes
|
|
14
15
|
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
- Updated dependencies [e7fdc5d]
|
|
17
|
+
- Updated dependencies [cb94c75]
|
|
18
|
+
- Updated dependencies [37cd707]
|
|
19
|
+
- Updated dependencies [32ed2cd]
|
|
20
|
+
- Updated dependencies [f327eec]
|
|
21
|
+
- Updated dependencies [f327eec]
|
|
22
|
+
- Updated dependencies [209eb8e]
|
|
23
|
+
- Updated dependencies [d72e42c]
|
|
24
|
+
- @open-pioneer/map@0.9.0
|
|
25
|
+
- @open-pioneer/map-ui-components@0.9.0
|
|
20
26
|
|
|
21
27
|
## 0.8.0
|
|
22
28
|
|
|
23
29
|
### Minor Changes
|
|
24
30
|
|
|
25
|
-
-
|
|
31
|
+
- 2fa8020: Update trails core package dependencies.
|
|
26
32
|
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
|
|
33
|
+
- Also updates Chakra UI to the latest 2.x version and Chakra React Select to version 5.
|
|
34
|
+
- Removes any obsolete references to `@chakra-ui/system`.
|
|
35
|
+
This dependency seems to be no longer required and may lead to duplicate packages in your dependency tree.
|
|
30
36
|
|
|
31
37
|
### Patch Changes
|
|
32
38
|
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
39
|
+
- 49f0207: Update trails core packages to version 2.4.0
|
|
40
|
+
- d8337a6: Refactor implementation to use the new reactive properties of the map model.
|
|
41
|
+
- Updated dependencies [b717121]
|
|
42
|
+
- Updated dependencies [e7978a8]
|
|
43
|
+
- Updated dependencies [7a5f1e1]
|
|
44
|
+
- Updated dependencies [7ae9f90]
|
|
45
|
+
- Updated dependencies [d8337a6]
|
|
46
|
+
- Updated dependencies [49f0207]
|
|
47
|
+
- Updated dependencies [b2127df]
|
|
48
|
+
- Updated dependencies [2fa8020]
|
|
49
|
+
- Updated dependencies [7ae9f90]
|
|
50
|
+
- Updated dependencies [d8337a6]
|
|
51
|
+
- @open-pioneer/map@0.8.0
|
|
52
|
+
- @open-pioneer/map-ui-components@0.8.0
|
|
47
53
|
|
|
48
54
|
## 0.7.0
|
|
49
55
|
|
|
50
56
|
### Minor Changes
|
|
51
57
|
|
|
52
|
-
-
|
|
58
|
+
- 440b165: Create new tool buttons that allow the user to navigate the history of map views (e.g. jump back to previous map extent):
|
|
53
59
|
|
|
54
60
|
```jsx
|
|
55
61
|
<HistoryBackward /* ... */ />
|
|
56
62
|
<HistoryForward /* ... */ />
|
|
57
63
|
```
|
|
58
64
|
|
|
59
|
-
-
|
|
65
|
+
- 310800c: Switch from `peerDependencies` to normal `dependencies`. Peer dependencies have some usability problems when used at scale.
|
|
60
66
|
|
|
61
67
|
### Patch Changes
|
|
62
68
|
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
-
|
|
67
|
-
|
|
69
|
+
- 310800c: Update core packages version.
|
|
70
|
+
- 483c416: Don't attempt to zoom past configured zoom limits (#356).
|
|
71
|
+
As a side effect of this change, clicks on the zoom in/out buttons are ignored during the brief animation period (currently 200ms).
|
|
72
|
+
- 583f1d6: The `mapId` or `map` properties are now optional on individual components.
|
|
73
|
+
You can use the `DefaultMapProvider` to configure an implicit default value.
|
|
68
74
|
|
|
69
75
|
Note that configuring _neither_ a default _nor_ an explicit `map` or `mapId` will trigger a runtime error.
|
|
70
76
|
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
-
|
|
77
|
+
- 583f1d6: All UI components in this project now accept the `mapId` (a `string`) _or_ the `map` (a `MapModel`) directly.
|
|
78
|
+
- a8b3449: Switch to a new versioning strategy.
|
|
79
|
+
From now on, packages released by this repository share a common version number.
|
|
80
|
+
- 900eb11: Update dependencies.
|
|
81
|
+
- Updated dependencies [310800c]
|
|
82
|
+
- Updated dependencies [2502050]
|
|
83
|
+
- Updated dependencies [583f1d6]
|
|
84
|
+
- Updated dependencies [583f1d6]
|
|
85
|
+
- Updated dependencies [397d617]
|
|
86
|
+
- Updated dependencies [a8b3449]
|
|
87
|
+
- Updated dependencies [310800c]
|
|
88
|
+
- Updated dependencies [900eb11]
|
|
89
|
+
- Updated dependencies [583f1d6]
|
|
90
|
+
- Updated dependencies [397d617]
|
|
91
|
+
- @open-pioneer/map-ui-components@0.7.0
|
|
92
|
+
- @open-pioneer/map@0.7.0
|
|
87
93
|
|
|
88
94
|
## 0.4.4
|
|
89
95
|
|
|
90
96
|
### Patch Changes
|
|
91
97
|
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
98
|
+
- b152428: Update trails dependencies
|
|
99
|
+
- Updated dependencies [b152428]
|
|
100
|
+
- Updated dependencies [291ccb6]
|
|
101
|
+
- @open-pioneer/map-ui-components@0.1.1
|
|
102
|
+
- @open-pioneer/map@0.6.1
|
|
97
103
|
|
|
98
104
|
## 0.4.3
|
|
99
105
|
|
|
100
106
|
### Patch Changes
|
|
101
107
|
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
108
|
-
-
|
|
108
|
+
- 28e092a: Update dependencies
|
|
109
|
+
- Updated dependencies [28e092a]
|
|
110
|
+
- Updated dependencies [0d51d2f]
|
|
111
|
+
- Updated dependencies [2090e72]
|
|
112
|
+
- Updated dependencies [76f8863]
|
|
113
|
+
- @open-pioneer/map-ui-components@0.1.0
|
|
114
|
+
- @open-pioneer/map@0.6.0
|
|
109
115
|
|
|
110
116
|
## 0.4.2
|
|
111
117
|
|
|
112
118
|
### Patch Changes
|
|
113
119
|
|
|
114
|
-
-
|
|
115
|
-
-
|
|
116
|
-
-
|
|
117
|
-
-
|
|
118
|
-
-
|
|
119
|
-
-
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
-
|
|
126
|
-
-
|
|
120
|
+
- 4140646: Update trails dependencies
|
|
121
|
+
- 4140646: Update to react 18.3.1
|
|
122
|
+
- f2912be: Added more context to some button labels and tooltips for better usability.
|
|
123
|
+
- 81bc7da: Update trails dependencies
|
|
124
|
+
- 2c092dc: Update dependencies
|
|
125
|
+
- Updated dependencies [4140646]
|
|
126
|
+
- Updated dependencies [4140646]
|
|
127
|
+
- Updated dependencies [b5bb7a1]
|
|
128
|
+
- Updated dependencies [81bc7da]
|
|
129
|
+
- Updated dependencies [2c092dc]
|
|
130
|
+
- Updated dependencies [4140646]
|
|
131
|
+
- @open-pioneer/react-utils@0.2.3
|
|
132
|
+
- @open-pioneer/map@0.5.1
|
|
127
133
|
|
|
128
134
|
## 0.4.1
|
|
129
135
|
|
|
130
136
|
### Patch Changes
|
|
131
137
|
|
|
132
|
-
-
|
|
133
|
-
-
|
|
138
|
+
- Updated dependencies [520a97b]
|
|
139
|
+
- @open-pioneer/map@0.5.0
|
|
134
140
|
|
|
135
141
|
## 0.4.0
|
|
136
142
|
|
|
137
143
|
### Minor Changes
|
|
138
144
|
|
|
139
|
-
-
|
|
145
|
+
- 9334e81: Update to OpenLayers 9
|
|
140
146
|
|
|
141
147
|
### Patch Changes
|
|
142
148
|
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
146
|
-
-
|
|
147
|
-
-
|
|
148
|
-
-
|
|
149
|
-
-
|
|
150
|
-
-
|
|
151
|
-
-
|
|
152
|
-
-
|
|
153
|
-
-
|
|
154
|
-
-
|
|
149
|
+
- 1a8ad89: Update package.json metadata
|
|
150
|
+
- 6162979: Update versions of core packages
|
|
151
|
+
- Updated dependencies [1a8ad89]
|
|
152
|
+
- Updated dependencies [a11bf72]
|
|
153
|
+
- Updated dependencies [fc6bf82]
|
|
154
|
+
- Updated dependencies [a0d8882]
|
|
155
|
+
- Updated dependencies [6162979]
|
|
156
|
+
- Updated dependencies [9334e81]
|
|
157
|
+
- Updated dependencies [ac7fdd1]
|
|
158
|
+
- Updated dependencies [13ea342]
|
|
159
|
+
- @open-pioneer/react-utils@0.2.2
|
|
160
|
+
- @open-pioneer/map@0.4.0
|
|
155
161
|
|
|
156
162
|
## 0.3.1
|
|
157
163
|
|
|
158
164
|
### Patch Changes
|
|
159
165
|
|
|
160
|
-
-
|
|
161
|
-
-
|
|
166
|
+
- Updated dependencies [611ddb9]
|
|
167
|
+
- @open-pioneer/map@0.3.1
|
|
162
168
|
|
|
163
169
|
## 0.3.0
|
|
164
170
|
|
|
165
171
|
### Minor Changes
|
|
166
172
|
|
|
167
|
-
-
|
|
173
|
+
- ee7c2d4: Update runtime version.
|
|
168
174
|
|
|
169
175
|
### Patch Changes
|
|
170
176
|
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
-
|
|
177
|
+
- Updated dependencies [ee7c2d4]
|
|
178
|
+
- Updated dependencies [a582e5e]
|
|
179
|
+
- Updated dependencies [0456500]
|
|
180
|
+
- Updated dependencies [762e7b9]
|
|
181
|
+
- @open-pioneer/map@0.3.0
|
|
182
|
+
- @open-pioneer/react-utils@0.2.1
|
|
177
183
|
|
|
178
184
|
## 0.2.0
|
|
179
185
|
|
|
180
186
|
### Minor Changes
|
|
181
187
|
|
|
182
|
-
-
|
|
188
|
+
- 70349a8: Update to new core packages major versions
|
|
183
189
|
|
|
184
190
|
### Patch Changes
|
|
185
191
|
|
|
186
|
-
-
|
|
187
|
-
-
|
|
188
|
-
-
|
|
192
|
+
- Updated dependencies [70349a8]
|
|
193
|
+
- @open-pioneer/map@0.2.0
|
|
194
|
+
- @open-pioneer/react-utils@0.2.0
|
|
189
195
|
|
|
190
196
|
## 0.1.1
|
|
191
197
|
|
|
192
198
|
### Patch Changes
|
|
193
199
|
|
|
194
|
-
-
|
|
195
|
-
-
|
|
196
|
-
-
|
|
197
|
-
-
|
|
198
|
-
-
|
|
200
|
+
- Updated dependencies [08bffbc]
|
|
201
|
+
- Updated dependencies [a58546b]
|
|
202
|
+
- Updated dependencies [a58546b]
|
|
203
|
+
- Updated dependencies [0c4ce04]
|
|
204
|
+
- @open-pioneer/map@0.1.1
|
|
199
205
|
|
|
200
206
|
## 0.1.0
|
|
201
207
|
|
|
202
208
|
### Minor Changes
|
|
203
209
|
|
|
204
|
-
-
|
|
210
|
+
- 70b2381: Initial release
|
|
205
211
|
|
|
206
212
|
### Patch Changes
|
|
207
213
|
|
|
208
|
-
-
|
|
209
|
-
-
|
|
210
|
-
-
|
|
211
|
-
-
|
|
214
|
+
- Updated dependencies [bb2f27a]
|
|
215
|
+
- Updated dependencies [182da1c]
|
|
216
|
+
- @open-pioneer/map@0.1.0
|
|
217
|
+
- @open-pioneer/react-utils@0.1.0
|
package/History.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"History.js","sources":["History.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { useReactiveSnapshot } from \"@open-pioneer/reactivity\";\nimport { PackageIntl } from \"@open-pioneer/runtime\";\nimport classNames from \"classnames\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, ForwardedRef, forwardRef, RefAttributes } from \"react\";\nimport { FiCornerUpLeft, FiCornerUpRight } from \"react-icons/fi\";\nimport { useHistoryViewModel } from \"./ViewHistoryModel\";\nimport { ButtonProps } from \"@open-pioneer/chakra-integration\";\n\nexport type HistoryForwardProps = Omit<HistoryProps, \"viewDirection\">;\n\n/**\n * Provides a button by which the user can navigate to the next map view.\n *\n * This component composes {@link History}.\n */\nexport const HistoryForward: FC<HistoryForwardProps> = forwardRef(function HistoryForward(\n props: HistoryForwardProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n return <History viewDirection=\"forward\" ref={ref} {...props} />;\n});\n\nexport type HistoryBackwardProps = HistoryForwardProps;\n\n/**\n * Provides a button by which the user can navigate to the previous map view.\n *\n * This component composes {@link History}.\n */\nexport const HistoryBackward: FC<HistoryBackwardProps> = forwardRef(function HistoryBackward(\n props: HistoryBackwardProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n return <History viewDirection=\"backward\" ref={ref} {...props} />;\n});\n\nexport interface HistoryProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n\n /**\n * The view direction.\n *\n * The button will either view forward or view backward depending on this value.\n */\n viewDirection: \"forward\" | \"backward\";\n}\n\n/**\n * Provides a button by which the user can navigate forward or backward in the view history of the map.\n */\nexport const History: FC<HistoryProps> = forwardRef(function History(\n props: HistoryProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n const intl = useIntl();\n const { buttonProps, viewDirection } = props;\n const { map } = useMapModel(props);\n const viewModel = useHistoryViewModel(map);\n const { defaultClassName, buttonLabel, buttonIcon } = getDirectionProps(intl, viewDirection);\n const { containerProps } = useCommonComponentProps(classNames(\"view\", defaultClassName), props);\n\n const canNavigate = useReactiveSnapshot(() => {\n if (!viewModel) {\n return false;\n }\n\n if (viewDirection === \"forward\") {\n return viewModel.canForward;\n } else {\n return viewModel.canBackward;\n }\n }, [viewModel, viewDirection]);\n const navigate = () => {\n if (!viewModel) {\n return;\n }\n\n if (viewDirection === \"forward\") {\n viewModel.forward();\n } else {\n viewModel.backward();\n }\n };\n\n return (\n viewModel && (\n <ToolButton\n ref={ref}\n {...containerProps}\n buttonProps={buttonProps}\n label={buttonLabel}\n icon={buttonIcon}\n onClick={navigate}\n isDisabled={!canNavigate}\n />\n )\n );\n});\n\nfunction getDirectionProps(intl: PackageIntl, viewDirection: \"forward\" | \"backward\") {\n switch (viewDirection) {\n case \"forward\":\n return {\n defaultClassName: \"view-forward\",\n buttonLabel: intl.formatMessage({ id: \"view-forward.title\" }),\n buttonIcon: <FiCornerUpRight />\n };\n case \"backward\":\n return {\n defaultClassName: \"view-backward\",\n buttonLabel: intl.formatMessage({ id: \"view-backward.title\" }),\n buttonIcon: <FiCornerUpLeft />\n };\n }\n}\n"],"names":["HistoryForward","HistoryBackward","History"],"mappings":";;;;;;;;;;;AAqBO,MAAM,cAA0C,GAAA,UAAA,CAAW,SAASA,eAAAA,CACvE,OACA,GACF,EAAA;AACE,EAAA,2BAAQ,OAAQ,EAAA,EAAA,aAAA,EAAc,SAAU,EAAA,GAAA,EAAW,GAAG,KAAO,EAAA,CAAA
|
|
1
|
+
{"version":3,"file":"History.js","sources":["History.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { useReactiveSnapshot } from \"@open-pioneer/reactivity\";\nimport { PackageIntl } from \"@open-pioneer/runtime\";\nimport classNames from \"classnames\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, ForwardedRef, forwardRef, RefAttributes } from \"react\";\nimport { FiCornerUpLeft, FiCornerUpRight } from \"react-icons/fi\";\nimport { useHistoryViewModel } from \"./ViewHistoryModel\";\nimport { ButtonProps } from \"@open-pioneer/chakra-integration\";\n\nexport type HistoryForwardProps = Omit<HistoryProps, \"viewDirection\">;\n\n/**\n * Provides a button by which the user can navigate to the next map view.\n *\n * This component composes {@link History}.\n */\nexport const HistoryForward: FC<HistoryForwardProps> = forwardRef(function HistoryForward(\n props: HistoryForwardProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n return <History viewDirection=\"forward\" ref={ref} {...props} />;\n});\n\nexport type HistoryBackwardProps = HistoryForwardProps;\n\n/**\n * Provides a button by which the user can navigate to the previous map view.\n *\n * This component composes {@link History}.\n */\nexport const HistoryBackward: FC<HistoryBackwardProps> = forwardRef(function HistoryBackward(\n props: HistoryBackwardProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n return <History viewDirection=\"backward\" ref={ref} {...props} />;\n});\n\nexport interface HistoryProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n\n /**\n * The view direction.\n *\n * The button will either view forward or view backward depending on this value.\n */\n viewDirection: \"forward\" | \"backward\";\n}\n\n/**\n * Provides a button by which the user can navigate forward or backward in the view history of the map.\n */\nexport const History: FC<HistoryProps> = forwardRef(function History(\n props: HistoryProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n const intl = useIntl();\n const { buttonProps, viewDirection } = props;\n const { map } = useMapModel(props);\n const viewModel = useHistoryViewModel(map);\n const { defaultClassName, buttonLabel, buttonIcon } = getDirectionProps(intl, viewDirection);\n const { containerProps } = useCommonComponentProps(classNames(\"view\", defaultClassName), props);\n\n const canNavigate = useReactiveSnapshot(() => {\n if (!viewModel) {\n return false;\n }\n\n if (viewDirection === \"forward\") {\n return viewModel.canForward;\n } else {\n return viewModel.canBackward;\n }\n }, [viewModel, viewDirection]);\n const navigate = () => {\n if (!viewModel) {\n return;\n }\n\n if (viewDirection === \"forward\") {\n viewModel.forward();\n } else {\n viewModel.backward();\n }\n };\n\n return (\n viewModel && (\n <ToolButton\n ref={ref}\n {...containerProps}\n buttonProps={buttonProps}\n label={buttonLabel}\n icon={buttonIcon}\n onClick={navigate}\n isDisabled={!canNavigate}\n />\n )\n );\n});\n\nfunction getDirectionProps(intl: PackageIntl, viewDirection: \"forward\" | \"backward\") {\n switch (viewDirection) {\n case \"forward\":\n return {\n defaultClassName: \"view-forward\",\n buttonLabel: intl.formatMessage({ id: \"view-forward.title\" }),\n buttonIcon: <FiCornerUpRight />\n };\n case \"backward\":\n return {\n defaultClassName: \"view-backward\",\n buttonLabel: intl.formatMessage({ id: \"view-backward.title\" }),\n buttonIcon: <FiCornerUpLeft />\n };\n }\n}\n"],"names":["HistoryForward","HistoryBackward","History"],"mappings":";;;;;;;;;;;AAqBO,MAAM,cAA0C,GAAA,UAAA,CAAW,SAASA,eAAAA,CACvE,OACA,GACF,EAAA;AACE,EAAA,2BAAQ,OAAQ,EAAA,EAAA,aAAA,EAAc,SAAU,EAAA,GAAA,EAAW,GAAG,KAAO,EAAA,CAAA;AACjE,CAAC;AASM,MAAM,eAA4C,GAAA,UAAA,CAAW,SAASC,gBAAAA,CACzE,OACA,GACF,EAAA;AACE,EAAA,2BAAQ,OAAQ,EAAA,EAAA,aAAA,EAAc,UAAW,EAAA,GAAA,EAAW,GAAG,KAAO,EAAA,CAAA;AAClE,CAAC;AAwBM,MAAM,OAA4B,GAAA,UAAA,CAAW,SAASC,QAAAA,CACzD,OACA,GACF,EAAA;AACE,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAM,MAAA,EAAE,WAAa,EAAA,aAAA,EAAkB,GAAA,KAAA;AACvC,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAM,MAAA,SAAA,GAAY,oBAAoB,GAAG,CAAA;AACzC,EAAA,MAAM,EAAE,gBAAkB,EAAA,WAAA,EAAa,YAAe,GAAA,iBAAA,CAAkB,MAAM,aAAa,CAAA;AAC3F,EAAM,MAAA,EAAE,gBAAmB,GAAA,uBAAA,CAAwB,WAAW,MAAQ,EAAA,gBAAgB,GAAG,KAAK,CAAA;AAE9F,EAAM,MAAA,WAAA,GAAc,oBAAoB,MAAM;AAC1C,IAAA,IAAI,CAAC,SAAW,EAAA;AACZ,MAAO,OAAA,KAAA;AAAA;AAGX,IAAA,IAAI,kBAAkB,SAAW,EAAA;AAC7B,MAAA,OAAO,SAAU,CAAA,UAAA;AAAA,KACd,MAAA;AACH,MAAA,OAAO,SAAU,CAAA,WAAA;AAAA;AACrB,GACD,EAAA,CAAC,SAAW,EAAA,aAAa,CAAC,CAAA;AAC7B,EAAA,MAAM,WAAW,MAAM;AACnB,IAAA,IAAI,CAAC,SAAW,EAAA;AACZ,MAAA;AAAA;AAGJ,IAAA,IAAI,kBAAkB,SAAW,EAAA;AAC7B,MAAA,SAAA,CAAU,OAAQ,EAAA;AAAA,KACf,MAAA;AACH,MAAA,SAAA,CAAU,QAAS,EAAA;AAAA;AACvB,GACJ;AAEA,EAAA,OACI,SACI,oBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACC,GAAG,cAAA;AAAA,MACJ,WAAA;AAAA,MACA,KAAO,EAAA,WAAA;AAAA,MACP,IAAM,EAAA,UAAA;AAAA,MACN,OAAS,EAAA,QAAA;AAAA,MACT,YAAY,CAAC;AAAA;AAAA,GACjB;AAGZ,CAAC;AAED,SAAS,iBAAA,CAAkB,MAAmB,aAAuC,EAAA;AACjF,EAAA,QAAQ,aAAe;AAAA,IACnB,KAAK,SAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,cAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,sBAAsB,CAAA;AAAA,QAC5D,UAAA,sBAAa,eAAgB,EAAA,EAAA;AAAA,OACjC;AAAA,IACJ,KAAK,UAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,eAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,uBAAuB,CAAA;AAAA,QAC7D,UAAA,sBAAa,cAAe,EAAA,EAAA;AAAA,OAChC;AAAA;AAEZ;;;;"}
|
package/InitialExtent.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InitialExtent.js","sources":["InitialExtent.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@open-pioneer/chakra-integration\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { Extent } from \"ol/extent\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, ForwardedRef, RefAttributes, forwardRef } from \"react\";\nimport { FiHome } from \"react-icons/fi\";\n\nexport interface InitialExtentProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n}\n\n/**\n * Provides a simple button that switches the view to its initial viewpoint.\n */\nexport const InitialExtent: FC<InitialExtentProps> = forwardRef(function InitialExtent(\n props: InitialExtentProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n const { containerProps } = useCommonComponentProps(\"initial-extent\", props);\n const { map } = useMapModel(props);\n const intl = useIntl();\n const { buttonProps } = props;\n\n function setInitExtent() {\n const initialExtent = map?.initialExtent;\n if (initialExtent) {\n const newExtent: Extent = [\n initialExtent.xMin,\n initialExtent.yMin,\n initialExtent.xMax,\n initialExtent.yMax\n ];\n\n map.olView.fit(newExtent, { duration: 200 });\n }\n }\n\n return (\n <ToolButton\n ref={ref}\n buttonProps={buttonProps}\n label={intl.formatMessage({ id: \"initial-extent.title\" })}\n icon={<FiHome />}\n onClick={setInitExtent}\n {...containerProps}\n />\n );\n});\n"],"names":["InitialExtent"],"mappings":";;;;;;;;AA0BO,MAAM,aAAwC,GAAA,UAAA,CAAW,SAASA,cAAAA,CACrE,OACA,GACF,EAAA;AACE,EAAA,MAAM,EAAE,cAAA,EAAmB,GAAA,uBAAA,CAAwB,kBAAkB,KAAK,CAAA
|
|
1
|
+
{"version":3,"file":"InitialExtent.js","sources":["InitialExtent.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@open-pioneer/chakra-integration\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { Extent } from \"ol/extent\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, ForwardedRef, RefAttributes, forwardRef } from \"react\";\nimport { FiHome } from \"react-icons/fi\";\n\nexport interface InitialExtentProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n}\n\n/**\n * Provides a simple button that switches the view to its initial viewpoint.\n */\nexport const InitialExtent: FC<InitialExtentProps> = forwardRef(function InitialExtent(\n props: InitialExtentProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n const { containerProps } = useCommonComponentProps(\"initial-extent\", props);\n const { map } = useMapModel(props);\n const intl = useIntl();\n const { buttonProps } = props;\n\n function setInitExtent() {\n const initialExtent = map?.initialExtent;\n if (initialExtent) {\n const newExtent: Extent = [\n initialExtent.xMin,\n initialExtent.yMin,\n initialExtent.xMax,\n initialExtent.yMax\n ];\n\n map.olView.fit(newExtent, { duration: 200 });\n }\n }\n\n return (\n <ToolButton\n ref={ref}\n buttonProps={buttonProps}\n label={intl.formatMessage({ id: \"initial-extent.title\" })}\n icon={<FiHome />}\n onClick={setInitExtent}\n {...containerProps}\n />\n );\n});\n"],"names":["InitialExtent"],"mappings":";;;;;;;;AA0BO,MAAM,aAAwC,GAAA,UAAA,CAAW,SAASA,cAAAA,CACrE,OACA,GACF,EAAA;AACE,EAAA,MAAM,EAAE,cAAA,EAAmB,GAAA,uBAAA,CAAwB,kBAAkB,KAAK,CAAA;AAC1E,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAM,MAAA,EAAE,aAAgB,GAAA,KAAA;AAExB,EAAA,SAAS,aAAgB,GAAA;AACrB,IAAA,MAAM,gBAAgB,GAAK,EAAA,aAAA;AAC3B,IAAA,IAAI,aAAe,EAAA;AACf,MAAA,MAAM,SAAoB,GAAA;AAAA,QACtB,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA,IAAA;AAAA,QACd,aAAc,CAAA;AAAA,OAClB;AAEA,MAAA,GAAA,CAAI,OAAO,GAAI,CAAA,SAAA,EAAW,EAAE,QAAA,EAAU,KAAK,CAAA;AAAA;AAC/C;AAGJ,EACI,uBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACA,WAAA;AAAA,MACA,OAAO,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,wBAAwB,CAAA;AAAA,MACxD,IAAA,sBAAO,MAAO,EAAA,EAAA,CAAA;AAAA,MACd,OAAS,EAAA,aAAA;AAAA,MACR,GAAG;AAAA;AAAA,GACR;AAER,CAAC;;;;"}
|
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
This package provides a collection of the following map navigation controls:
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
-
|
|
5
|
+
- [Initial extent](#initial-extent): A button that allows the user to reset the map to the initial view.
|
|
6
|
+
- [Zoom](#zoom): Two buttons that allow the user to zoom in and zoom out of the map.
|
|
7
|
+
- [Navigate history forward and backward](#navigate-history-forward-and-backward): Two separate buttons that allow the user to navigate in the history of map views (e.g. jump back to previous map extent).
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
package/ViewHistoryModel.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ViewHistoryModel.js","sources":["ViewHistoryModel.ts"],"sourcesContent":["// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { MapModel } from \"@open-pioneer/map\";\nimport { View } from \"ol\";\nimport { EventsKey } from \"ol/events\";\nimport { unByKey } from \"ol/Observable\";\nimport OlMap from \"ol/Map\";\nimport { Reactive, reactive, ReactiveMap, reactiveMap } from \"@conterra/reactivity-core\";\nimport { Coordinate } from \"ol/coordinate\";\nimport { useEffect, useState } from \"react\";\n\ninterface MapViewState {\n /** Map resolution */\n resolution: number;\n\n /** Map center */\n center: Coordinate;\n}\n\nconst SIZE_LIMIT = 200;\n\nexport class ViewHistoryModel {\n private olMap: OlMap;\n private handle: EventsKey | undefined;\n\n private _mapViews: ReactiveMap<number, MapViewState> = reactiveMap<number, MapViewState>();\n private _activeViewId: Reactive<number> = reactive(0);\n\n constructor(map: MapModel) {\n this.olMap = map.olMap;\n this.handle = this.#subscribeToMapEvents();\n }\n\n destroy() {\n this.handle && unByKey(this.handle);\n this.handle = undefined;\n }\n\n get activeViewId(): number {\n return this._activeViewId.value;\n }\n\n get mapViews(): ReactiveMap<number, MapViewState> {\n return this._mapViews;\n }\n\n get canBackward(): boolean {\n return this.mapViews.get(this.activeViewId - 1) != null;\n }\n\n get canForward(): boolean {\n return this.mapViews.get(this.activeViewId + 1) != null;\n }\n\n backward = () => {\n if (this.canBackward) {\n this.#setActiveView(this.activeViewId - 1);\n this.#goto(this.activeViewId);\n } else throw new Error(\"Backward is not possible at the moment\");\n };\n\n forward = () => {\n if (this.canForward) {\n this.#setActiveView(this.activeViewId + 1);\n this.#goto(this.activeViewId);\n } else throw new Error(\"Forward is not possible at the moment\");\n };\n\n #goto(activeViewId: number) {\n const view = this.olMap.getView();\n this.olMap.setView(\n new View({\n center: this.mapViews.get(activeViewId)!.center,\n resolution: this.mapViews.get(activeViewId)!.resolution,\n projection: view.getProjection()\n })\n );\n }\n\n #setActiveView(activeViewId: number) {\n this._activeViewId.value = activeViewId;\n }\n\n #subscribeToMapEvents() {\n const eventsKey: EventsKey = this.olMap.on(\"moveend\", () => {\n onCenterResChange();\n });\n\n const onCenterResChange = () => {\n const olMap = this.olMap;\n const mapViews = this.mapViews;\n const view = olMap.getView();\n const resolution = view.getResolution();\n const center = view.getCenter();\n if (resolution != null && center != null) {\n if (\n center !== mapViews.get(this.activeViewId)?.center ||\n resolution !== mapViews.get(this.activeViewId)?.resolution\n ) {\n const mapState = {\n resolution: resolution,\n center: center\n };\n const nextViewId = this.activeViewId + 1;\n\n // Remove keys in the \"future\". Note: an array would probably be more efficient.\n for (const k of mapViews.keys()) {\n if (k > nextViewId) {\n mapViews.delete(k);\n }\n }\n\n // Remove old keys above limit (maps are sorted by insertion order, so this removes the oldest entries)\n for (const k of mapViews.keys()) {\n if (mapViews.size < SIZE_LIMIT) {\n break;\n }\n mapViews.delete(k);\n }\n\n this.#setActiveView(nextViewId);\n mapViews.set(nextViewId, mapState);\n }\n }\n };\n\n return eventsKey;\n }\n}\n\ninterface ViewModelState {\n vm: ViewHistoryModel;\n useCount: number; // 0 -> must destroy\n}\n\nconst VIEW_MODELS = new WeakMap<MapModel, ViewModelState>();\n\n/**\n * An internal hook that returns a shared HistoryViewModel.\n * History tools that are active at the same time share a single model.\n *\n * The model is destroyed when the last tool is unmounted.\n *\n * TODO: `undefined` only because the map can be undefined at the moment (loading).\n *\n * NOTE: May be useful to have this a general solution in the future; but this is the only usage right now.\n */\nexport function useHistoryViewModel(map: MapModel | undefined): ViewHistoryModel | undefined {\n const [vm, setVm] = useState<ViewHistoryModel>();\n useEffect(() => {\n if (!map) {\n return;\n }\n\n let state = VIEW_MODELS.get(map);\n if (state == null) {\n state = {\n vm: new ViewHistoryModel(map),\n useCount: 1\n };\n VIEW_MODELS.set(map, state);\n } else {\n state.useCount++;\n }\n setVm(state.vm);\n\n return () => {\n setVm(undefined);\n\n state.useCount--;\n if (state.useCount === 0) {\n state.vm.destroy();\n VIEW_MODELS.delete(map);\n }\n };\n }, [map]);\n return vm;\n}\n"],"names":[],"mappings":";;;;;AAmBA,MAAM,UAAa,GAAA,GAAA
|
|
1
|
+
{"version":3,"file":"ViewHistoryModel.js","sources":["ViewHistoryModel.ts"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { MapModel } from \"@open-pioneer/map\";\nimport { View } from \"ol\";\nimport { EventsKey } from \"ol/events\";\nimport { unByKey } from \"ol/Observable\";\nimport OlMap from \"ol/Map\";\nimport { Reactive, reactive, ReactiveMap, reactiveMap } from \"@conterra/reactivity-core\";\nimport { Coordinate } from \"ol/coordinate\";\nimport { useEffect, useState } from \"react\";\n\ninterface MapViewState {\n /** Map resolution */\n resolution: number;\n\n /** Map center */\n center: Coordinate;\n}\n\nconst SIZE_LIMIT = 200;\n\nexport class ViewHistoryModel {\n private olMap: OlMap;\n private handle: EventsKey | undefined;\n\n private _mapViews: ReactiveMap<number, MapViewState> = reactiveMap<number, MapViewState>();\n private _activeViewId: Reactive<number> = reactive(0);\n\n constructor(map: MapModel) {\n this.olMap = map.olMap;\n this.handle = this.#subscribeToMapEvents();\n }\n\n destroy() {\n this.handle && unByKey(this.handle);\n this.handle = undefined;\n }\n\n get activeViewId(): number {\n return this._activeViewId.value;\n }\n\n get mapViews(): ReactiveMap<number, MapViewState> {\n return this._mapViews;\n }\n\n get canBackward(): boolean {\n return this.mapViews.get(this.activeViewId - 1) != null;\n }\n\n get canForward(): boolean {\n return this.mapViews.get(this.activeViewId + 1) != null;\n }\n\n backward = () => {\n if (this.canBackward) {\n this.#setActiveView(this.activeViewId - 1);\n this.#goto(this.activeViewId);\n } else throw new Error(\"Backward is not possible at the moment\");\n };\n\n forward = () => {\n if (this.canForward) {\n this.#setActiveView(this.activeViewId + 1);\n this.#goto(this.activeViewId);\n } else throw new Error(\"Forward is not possible at the moment\");\n };\n\n #goto(activeViewId: number) {\n const view = this.olMap.getView();\n this.olMap.setView(\n new View({\n center: this.mapViews.get(activeViewId)!.center,\n resolution: this.mapViews.get(activeViewId)!.resolution,\n projection: view.getProjection()\n })\n );\n }\n\n #setActiveView(activeViewId: number) {\n this._activeViewId.value = activeViewId;\n }\n\n #subscribeToMapEvents() {\n const eventsKey: EventsKey = this.olMap.on(\"moveend\", () => {\n onCenterResChange();\n });\n\n const onCenterResChange = () => {\n const olMap = this.olMap;\n const mapViews = this.mapViews;\n const view = olMap.getView();\n const resolution = view.getResolution();\n const center = view.getCenter();\n if (resolution != null && center != null) {\n if (\n center !== mapViews.get(this.activeViewId)?.center ||\n resolution !== mapViews.get(this.activeViewId)?.resolution\n ) {\n const mapState = {\n resolution: resolution,\n center: center\n };\n const nextViewId = this.activeViewId + 1;\n\n // Remove keys in the \"future\". Note: an array would probably be more efficient.\n for (const k of mapViews.keys()) {\n if (k > nextViewId) {\n mapViews.delete(k);\n }\n }\n\n // Remove old keys above limit (maps are sorted by insertion order, so this removes the oldest entries)\n for (const k of mapViews.keys()) {\n if (mapViews.size < SIZE_LIMIT) {\n break;\n }\n mapViews.delete(k);\n }\n\n this.#setActiveView(nextViewId);\n mapViews.set(nextViewId, mapState);\n }\n }\n };\n\n return eventsKey;\n }\n}\n\ninterface ViewModelState {\n vm: ViewHistoryModel;\n useCount: number; // 0 -> must destroy\n}\n\nconst VIEW_MODELS = new WeakMap<MapModel, ViewModelState>();\n\n/**\n * An internal hook that returns a shared HistoryViewModel.\n * History tools that are active at the same time share a single model.\n *\n * The model is destroyed when the last tool is unmounted.\n *\n * TODO: `undefined` only because the map can be undefined at the moment (loading).\n *\n * NOTE: May be useful to have this a general solution in the future; but this is the only usage right now.\n */\nexport function useHistoryViewModel(map: MapModel | undefined): ViewHistoryModel | undefined {\n const [vm, setVm] = useState<ViewHistoryModel>();\n useEffect(() => {\n if (!map) {\n return;\n }\n\n let state = VIEW_MODELS.get(map);\n if (state == null) {\n state = {\n vm: new ViewHistoryModel(map),\n useCount: 1\n };\n VIEW_MODELS.set(map, state);\n } else {\n state.useCount++;\n }\n setVm(state.vm);\n\n return () => {\n setVm(undefined);\n\n state.useCount--;\n if (state.useCount === 0) {\n state.vm.destroy();\n VIEW_MODELS.delete(map);\n }\n };\n }, [map]);\n return vm;\n}\n"],"names":[],"mappings":";;;;;AAmBA,MAAM,UAAa,GAAA,GAAA;AAEZ,MAAM,gBAAiB,CAAA;AAAA,EAClB,KAAA;AAAA,EACA,MAAA;AAAA,EAEA,YAA+C,WAAkC,EAAA;AAAA,EACjF,aAAA,GAAkC,SAAS,CAAC,CAAA;AAAA,EAEpD,YAAY,GAAe,EAAA;AACvB,IAAA,IAAA,CAAK,QAAQ,GAAI,CAAA,KAAA;AACjB,IAAK,IAAA,CAAA,MAAA,GAAS,KAAK,qBAAsB,EAAA;AAAA;AAC7C,EAEA,OAAU,GAAA;AACN,IAAK,IAAA,CAAA,MAAA,IAAU,OAAQ,CAAA,IAAA,CAAK,MAAM,CAAA;AAClC,IAAA,IAAA,CAAK,MAAS,GAAA,MAAA;AAAA;AAClB,EAEA,IAAI,YAAuB,GAAA;AACvB,IAAA,OAAO,KAAK,aAAc,CAAA,KAAA;AAAA;AAC9B,EAEA,IAAI,QAA8C,GAAA;AAC9C,IAAA,OAAO,IAAK,CAAA,SAAA;AAAA;AAChB,EAEA,IAAI,WAAuB,GAAA;AACvB,IAAA,OAAO,KAAK,QAAS,CAAA,GAAA,CAAI,IAAK,CAAA,YAAA,GAAe,CAAC,CAAK,IAAA,IAAA;AAAA;AACvD,EAEA,IAAI,UAAsB,GAAA;AACtB,IAAA,OAAO,KAAK,QAAS,CAAA,GAAA,CAAI,IAAK,CAAA,YAAA,GAAe,CAAC,CAAK,IAAA,IAAA;AAAA;AACvD,EAEA,WAAW,MAAM;AACb,IAAA,IAAI,KAAK,WAAa,EAAA;AAClB,MAAK,IAAA,CAAA,cAAA,CAAe,IAAK,CAAA,YAAA,GAAe,CAAC,CAAA;AACzC,MAAK,IAAA,CAAA,KAAA,CAAM,KAAK,YAAY,CAAA;AAAA,KACzB,MAAA,MAAM,IAAI,KAAA,CAAM,wCAAwC,CAAA;AAAA,GACnE;AAAA,EAEA,UAAU,MAAM;AACZ,IAAA,IAAI,KAAK,UAAY,EAAA;AACjB,MAAK,IAAA,CAAA,cAAA,CAAe,IAAK,CAAA,YAAA,GAAe,CAAC,CAAA;AACzC,MAAK,IAAA,CAAA,KAAA,CAAM,KAAK,YAAY,CAAA;AAAA,KACzB,MAAA,MAAM,IAAI,KAAA,CAAM,uCAAuC,CAAA;AAAA,GAClE;AAAA,EAEA,MAAM,YAAsB,EAAA;AACxB,IAAM,MAAA,IAAA,GAAO,IAAK,CAAA,KAAA,CAAM,OAAQ,EAAA;AAChC,IAAA,IAAA,CAAK,KAAM,CAAA,OAAA;AAAA,MACP,IAAI,IAAK,CAAA;AAAA,QACL,MAAQ,EAAA,IAAA,CAAK,QAAS,CAAA,GAAA,CAAI,YAAY,CAAG,CAAA,MAAA;AAAA,QACzC,UAAY,EAAA,IAAA,CAAK,QAAS,CAAA,GAAA,CAAI,YAAY,CAAG,CAAA,UAAA;AAAA,QAC7C,UAAA,EAAY,KAAK,aAAc;AAAA,OAClC;AAAA,KACL;AAAA;AACJ,EAEA,eAAe,YAAsB,EAAA;AACjC,IAAA,IAAA,CAAK,cAAc,KAAQ,GAAA,YAAA;AAAA;AAC/B,EAEA,qBAAwB,GAAA;AACpB,IAAA,MAAM,SAAuB,GAAA,IAAA,CAAK,KAAM,CAAA,EAAA,CAAG,WAAW,MAAM;AACxD,MAAkB,iBAAA,EAAA;AAAA,KACrB,CAAA;AAED,IAAA,MAAM,oBAAoB,MAAM;AAC5B,MAAA,MAAM,QAAQ,IAAK,CAAA,KAAA;AACnB,MAAA,MAAM,WAAW,IAAK,CAAA,QAAA;AACtB,MAAM,MAAA,IAAA,GAAO,MAAM,OAAQ,EAAA;AAC3B,MAAM,MAAA,UAAA,GAAa,KAAK,aAAc,EAAA;AACtC,MAAM,MAAA,MAAA,GAAS,KAAK,SAAU,EAAA;AAC9B,MAAI,IAAA,UAAA,IAAc,IAAQ,IAAA,MAAA,IAAU,IAAM,EAAA;AACtC,QAAA,IACI,MAAW,KAAA,QAAA,CAAS,GAAI,CAAA,IAAA,CAAK,YAAY,CAAA,EAAG,MAC5C,IAAA,UAAA,KAAe,QAAS,CAAA,GAAA,CAAI,IAAK,CAAA,YAAY,GAAG,UAClD,EAAA;AACE,UAAA,MAAM,QAAW,GAAA;AAAA,YACb,UAAA;AAAA,YACA;AAAA,WACJ;AACA,UAAM,MAAA,UAAA,GAAa,KAAK,YAAe,GAAA,CAAA;AAGvC,UAAW,KAAA,MAAA,CAAA,IAAK,QAAS,CAAA,IAAA,EAAQ,EAAA;AAC7B,YAAA,IAAI,IAAI,UAAY,EAAA;AAChB,cAAA,QAAA,CAAS,OAAO,CAAC,CAAA;AAAA;AACrB;AAIJ,UAAW,KAAA,MAAA,CAAA,IAAK,QAAS,CAAA,IAAA,EAAQ,EAAA;AAC7B,YAAI,IAAA,QAAA,CAAS,OAAO,UAAY,EAAA;AAC5B,cAAA;AAAA;AAEJ,YAAA,QAAA,CAAS,OAAO,CAAC,CAAA;AAAA;AAGrB,UAAA,IAAA,CAAK,eAAe,UAAU,CAAA;AAC9B,UAAS,QAAA,CAAA,GAAA,CAAI,YAAY,QAAQ,CAAA;AAAA;AACrC;AACJ,KACJ;AAEA,IAAO,OAAA,SAAA;AAAA;AAEf;AAOA,MAAM,WAAA,uBAAkB,OAAkC,EAAA;AAYnD,SAAS,oBAAoB,GAAyD,EAAA;AACzF,EAAA,MAAM,CAAC,EAAA,EAAI,KAAK,CAAA,GAAI,QAA2B,EAAA;AAC/C,EAAA,SAAA,CAAU,MAAM;AACZ,IAAA,IAAI,CAAC,GAAK,EAAA;AACN,MAAA;AAAA;AAGJ,IAAI,IAAA,KAAA,GAAQ,WAAY,CAAA,GAAA,CAAI,GAAG,CAAA;AAC/B,IAAA,IAAI,SAAS,IAAM,EAAA;AACf,MAAQ,KAAA,GAAA;AAAA,QACJ,EAAA,EAAI,IAAI,gBAAA,CAAiB,GAAG,CAAA;AAAA,QAC5B,QAAU,EAAA;AAAA,OACd;AACA,MAAY,WAAA,CAAA,GAAA,CAAI,KAAK,KAAK,CAAA;AAAA,KACvB,MAAA;AACH,MAAM,KAAA,CAAA,QAAA,EAAA;AAAA;AAEV,IAAA,KAAA,CAAM,MAAM,EAAE,CAAA;AAEd,IAAA,OAAO,MAAM;AACT,MAAA,KAAA,CAAM,MAAS,CAAA;AAEf,MAAM,KAAA,CAAA,QAAA,EAAA;AACN,MAAI,IAAA,KAAA,CAAM,aAAa,CAAG,EAAA;AACtB,QAAA,KAAA,CAAM,GAAG,OAAQ,EAAA;AACjB,QAAA,WAAA,CAAY,OAAO,GAAG,CAAA;AAAA;AAC1B,KACJ;AAAA,GACJ,EAAG,CAAC,GAAG,CAAC,CAAA;AACR,EAAO,OAAA,EAAA;AACX;;;;"}
|
package/Zoom.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Zoom.js","sources":["Zoom.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@open-pioneer/chakra-integration\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { PackageIntl } from \"@open-pioneer/runtime\";\nimport classNames from \"classnames\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, ForwardedRef, RefAttributes, forwardRef, useState } from \"react\";\nimport { FiMinus, FiPlus } from \"react-icons/fi\";\n\nexport type ZoomInProps = Omit<ZoomProps, \"zoomDirection\">;\n\n/**\n * Provides a button by which the user can zoom into the map.\n *\n * This component composes {@link Zoom}.\n */\nexport const ZoomIn: FC<ZoomInProps> = forwardRef(function ZoomIn(props, ref) {\n return <Zoom zoomDirection=\"in\" ref={ref} {...props} />;\n});\n\nexport type ZoomOutProps = ZoomInProps;\n\n/**\n * Provides a button by which the user can zoom out of the map.\n *\n * This component composes {@link Zoom}.\n */\nexport const ZoomOut: FC<ZoomOutProps> = forwardRef(function ZoomOut(props, ref) {\n return <Zoom zoomDirection=\"out\" ref={ref} {...props} />;\n});\n\nexport interface ZoomProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n\n /**\n * The zoom direction.\n *\n * The button will either zoom in or zoom out depending on this value.\n */\n zoomDirection: \"in\" | \"out\";\n}\n\n/**\n * Provides a button by which the user can zoom in or zoom out of the map.\n */\nexport const Zoom: FC<ZoomProps> = forwardRef(function Zoom(\n props: ZoomProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n const { buttonProps, zoomDirection } = props;\n const { map } = useMapModel(props);\n const intl = useIntl();\n const [disabled, setDisabled] = useState<boolean>(false);\n const { defaultClassName, buttonLabel, buttonIcon } = getDirectionProps(intl, zoomDirection);\n\n const { containerProps } = useCommonComponentProps(classNames(\"zoom\", defaultClassName), props);\n\n function zoom() {\n if (disabled) {\n return;\n }\n setDisabled(true);\n const view = map?.olView;\n let currZoom = map?.zoomLevel;\n\n const maxZoom = view?.getMaxZoom() || Number.MAX_SAFE_INTEGER;\n const minZoom = view?.getMinZoom() || 0;\n if (view && currZoom !== undefined) {\n if (zoomDirection === \"in\" && currZoom < maxZoom) {\n ++currZoom;\n } else if (zoomDirection === \"out\" && currZoom > minZoom) {\n --currZoom;\n }\n\n view.animate({ zoom: currZoom, duration: 200 }, () => setDisabled(false));\n }\n }\n\n return (\n <ToolButton\n ref={ref}\n buttonProps={buttonProps}\n label={buttonLabel}\n icon={buttonIcon}\n onClick={zoom}\n {...containerProps}\n />\n );\n});\n\nfunction getDirectionProps(intl: PackageIntl, zoomDirection: \"in\" | \"out\") {\n switch (zoomDirection) {\n case \"in\":\n return {\n defaultClassName: \"zoom-in\",\n buttonLabel: intl.formatMessage({ id: \"zoom-in.title\" }),\n buttonIcon: <FiPlus />\n };\n case \"out\":\n return {\n defaultClassName: \"zoom-out\",\n buttonLabel: intl.formatMessage({ id: \"zoom-out.title\" }),\n buttonIcon: <FiMinus />\n };\n }\n}\n"],"names":["ZoomIn","ZoomOut","Zoom"],"mappings":";;;;;;;;;AAmBO,MAAM,MAA0B,GAAA,UAAA,CAAW,SAASA,OAAAA,CAAO,OAAO,GAAK,EAAA;AAC1E,EAAA,2BAAQ,IAAK,EAAA,EAAA,aAAA,EAAc,IAAK,EAAA,GAAA,EAAW,GAAG,KAAO,EAAA,CAAA
|
|
1
|
+
{"version":3,"file":"Zoom.js","sources":["Zoom.tsx"],"sourcesContent":["// SPDX-FileCopyrightText: 2023-2025 Open Pioneer project (https://github.com/open-pioneer)\n// SPDX-License-Identifier: Apache-2.0\nimport { ButtonProps } from \"@open-pioneer/chakra-integration\";\nimport { MapModelProps, useMapModel } from \"@open-pioneer/map\";\nimport { ToolButton } from \"@open-pioneer/map-ui-components\";\nimport { CommonComponentProps, useCommonComponentProps } from \"@open-pioneer/react-utils\";\nimport { PackageIntl } from \"@open-pioneer/runtime\";\nimport classNames from \"classnames\";\nimport { useIntl } from \"open-pioneer:react-hooks\";\nimport { FC, ForwardedRef, RefAttributes, forwardRef, useState } from \"react\";\nimport { FiMinus, FiPlus } from \"react-icons/fi\";\n\nexport type ZoomInProps = Omit<ZoomProps, \"zoomDirection\">;\n\n/**\n * Provides a button by which the user can zoom into the map.\n *\n * This component composes {@link Zoom}.\n */\nexport const ZoomIn: FC<ZoomInProps> = forwardRef(function ZoomIn(props, ref) {\n return <Zoom zoomDirection=\"in\" ref={ref} {...props} />;\n});\n\nexport type ZoomOutProps = ZoomInProps;\n\n/**\n * Provides a button by which the user can zoom out of the map.\n *\n * This component composes {@link Zoom}.\n */\nexport const ZoomOut: FC<ZoomOutProps> = forwardRef(function ZoomOut(props, ref) {\n return <Zoom zoomDirection=\"out\" ref={ref} {...props} />;\n});\n\nexport interface ZoomProps\n extends CommonComponentProps,\n RefAttributes<HTMLButtonElement>,\n MapModelProps {\n /**\n * Additional properties for the `Button` element.\n *\n * Note that the ToolButton also defines some of these props.\n */\n buttonProps?: Partial<ButtonProps>;\n\n /**\n * The zoom direction.\n *\n * The button will either zoom in or zoom out depending on this value.\n */\n zoomDirection: \"in\" | \"out\";\n}\n\n/**\n * Provides a button by which the user can zoom in or zoom out of the map.\n */\nexport const Zoom: FC<ZoomProps> = forwardRef(function Zoom(\n props: ZoomProps,\n ref: ForwardedRef<HTMLButtonElement>\n) {\n const { buttonProps, zoomDirection } = props;\n const { map } = useMapModel(props);\n const intl = useIntl();\n const [disabled, setDisabled] = useState<boolean>(false);\n const { defaultClassName, buttonLabel, buttonIcon } = getDirectionProps(intl, zoomDirection);\n\n const { containerProps } = useCommonComponentProps(classNames(\"zoom\", defaultClassName), props);\n\n function zoom() {\n if (disabled) {\n return;\n }\n setDisabled(true);\n const view = map?.olView;\n let currZoom = map?.zoomLevel;\n\n const maxZoom = view?.getMaxZoom() || Number.MAX_SAFE_INTEGER;\n const minZoom = view?.getMinZoom() || 0;\n if (view && currZoom !== undefined) {\n if (zoomDirection === \"in\" && currZoom < maxZoom) {\n ++currZoom;\n } else if (zoomDirection === \"out\" && currZoom > minZoom) {\n --currZoom;\n }\n\n view.animate({ zoom: currZoom, duration: 200 }, () => setDisabled(false));\n }\n }\n\n return (\n <ToolButton\n ref={ref}\n buttonProps={buttonProps}\n label={buttonLabel}\n icon={buttonIcon}\n onClick={zoom}\n {...containerProps}\n />\n );\n});\n\nfunction getDirectionProps(intl: PackageIntl, zoomDirection: \"in\" | \"out\") {\n switch (zoomDirection) {\n case \"in\":\n return {\n defaultClassName: \"zoom-in\",\n buttonLabel: intl.formatMessage({ id: \"zoom-in.title\" }),\n buttonIcon: <FiPlus />\n };\n case \"out\":\n return {\n defaultClassName: \"zoom-out\",\n buttonLabel: intl.formatMessage({ id: \"zoom-out.title\" }),\n buttonIcon: <FiMinus />\n };\n }\n}\n"],"names":["ZoomIn","ZoomOut","Zoom"],"mappings":";;;;;;;;;AAmBO,MAAM,MAA0B,GAAA,UAAA,CAAW,SAASA,OAAAA,CAAO,OAAO,GAAK,EAAA;AAC1E,EAAA,2BAAQ,IAAK,EAAA,EAAA,aAAA,EAAc,IAAK,EAAA,GAAA,EAAW,GAAG,KAAO,EAAA,CAAA;AACzD,CAAC;AASM,MAAM,OAA4B,GAAA,UAAA,CAAW,SAASC,QAAAA,CAAQ,OAAO,GAAK,EAAA;AAC7E,EAAA,2BAAQ,IAAK,EAAA,EAAA,aAAA,EAAc,KAAM,EAAA,GAAA,EAAW,GAAG,KAAO,EAAA,CAAA;AAC1D,CAAC;AAwBM,MAAM,IAAsB,GAAA,UAAA,CAAW,SAASC,KAAAA,CACnD,OACA,GACF,EAAA;AACE,EAAM,MAAA,EAAE,WAAa,EAAA,aAAA,EAAkB,GAAA,KAAA;AACvC,EAAA,MAAM,EAAE,GAAA,EAAQ,GAAA,WAAA,CAAY,KAAK,CAAA;AACjC,EAAA,MAAM,OAAO,OAAQ,EAAA;AACrB,EAAA,MAAM,CAAC,QAAA,EAAU,WAAW,CAAA,GAAI,SAAkB,KAAK,CAAA;AACvD,EAAA,MAAM,EAAE,gBAAkB,EAAA,WAAA,EAAa,YAAe,GAAA,iBAAA,CAAkB,MAAM,aAAa,CAAA;AAE3F,EAAM,MAAA,EAAE,gBAAmB,GAAA,uBAAA,CAAwB,WAAW,MAAQ,EAAA,gBAAgB,GAAG,KAAK,CAAA;AAE9F,EAAA,SAAS,IAAO,GAAA;AACZ,IAAA,IAAI,QAAU,EAAA;AACV,MAAA;AAAA;AAEJ,IAAA,WAAA,CAAY,IAAI,CAAA;AAChB,IAAA,MAAM,OAAO,GAAK,EAAA,MAAA;AAClB,IAAA,IAAI,WAAW,GAAK,EAAA,SAAA;AAEpB,IAAA,MAAM,OAAU,GAAA,IAAA,EAAM,UAAW,EAAA,IAAK,MAAO,CAAA,gBAAA;AAC7C,IAAM,MAAA,OAAA,GAAU,IAAM,EAAA,UAAA,EAAgB,IAAA,CAAA;AACtC,IAAI,IAAA,IAAA,IAAQ,aAAa,MAAW,EAAA;AAChC,MAAI,IAAA,aAAA,KAAkB,IAAQ,IAAA,QAAA,GAAW,OAAS,EAAA;AAC9C,QAAE,EAAA,QAAA;AAAA,OACK,MAAA,IAAA,aAAA,KAAkB,KAAS,IAAA,QAAA,GAAW,OAAS,EAAA;AACtD,QAAE,EAAA,QAAA;AAAA;AAGN,MAAK,IAAA,CAAA,OAAA,CAAQ,EAAE,IAAA,EAAM,QAAU,EAAA,QAAA,EAAU,KAAO,EAAA,MAAM,WAAY,CAAA,KAAK,CAAC,CAAA;AAAA;AAC5E;AAGJ,EACI,uBAAA,GAAA;AAAA,IAAC,UAAA;AAAA,IAAA;AAAA,MACG,GAAA;AAAA,MACA,WAAA;AAAA,MACA,KAAO,EAAA,WAAA;AAAA,MACP,IAAM,EAAA,UAAA;AAAA,MACN,OAAS,EAAA,IAAA;AAAA,MACR,GAAG;AAAA;AAAA,GACR;AAER,CAAC;AAED,SAAS,iBAAA,CAAkB,MAAmB,aAA6B,EAAA;AACvE,EAAA,QAAQ,aAAe;AAAA,IACnB,KAAK,IAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,SAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,iBAAiB,CAAA;AAAA,QACvD,UAAA,sBAAa,MAAO,EAAA,EAAA;AAAA,OACxB;AAAA,IACJ,KAAK,KAAA;AACD,MAAO,OAAA;AAAA,QACH,gBAAkB,EAAA,UAAA;AAAA,QAClB,aAAa,IAAK,CAAA,aAAA,CAAc,EAAE,EAAA,EAAI,kBAAkB,CAAA;AAAA,QACxD,UAAA,sBAAa,OAAQ,EAAA,EAAA;AAAA,OACzB;AAAA;AAEZ;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@open-pioneer/map-navigation",
|
|
4
|
-
"version": "0.9.0
|
|
4
|
+
"version": "0.9.0",
|
|
5
5
|
"description": "This package provides a collection of map navigation controls.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"open-pioneer-trails"
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@conterra/reactivity-core": "^0.4.3",
|
|
18
|
-
"@open-pioneer/chakra-integration": "^
|
|
19
|
-
"@open-pioneer/react-utils": "^
|
|
20
|
-
"@open-pioneer/reactivity": "^
|
|
21
|
-
"@open-pioneer/runtime": "^
|
|
18
|
+
"@open-pioneer/chakra-integration": "^3.0.0",
|
|
19
|
+
"@open-pioneer/react-utils": "^3.0.0",
|
|
20
|
+
"@open-pioneer/reactivity": "^3.0.0",
|
|
21
|
+
"@open-pioneer/runtime": "^3.0.0",
|
|
22
22
|
"classnames": "^2.3.2",
|
|
23
|
-
"ol": "^10.
|
|
24
|
-
"react": "^
|
|
23
|
+
"ol": "^10.4.0",
|
|
24
|
+
"react": "^19.0.0",
|
|
25
25
|
"react-icons": "^5.3.0",
|
|
26
|
-
"@open-pioneer/map": "^0.9.0
|
|
27
|
-
"@open-pioneer/map
|
|
26
|
+
"@open-pioneer/map-ui-components": "^0.9.0",
|
|
27
|
+
"@open-pioneer/map": "^0.9.0"
|
|
28
28
|
},
|
|
29
29
|
"exports": {
|
|
30
30
|
"./package.json": "./package.json",
|