qwc2 2025.3.31

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.
Files changed (528) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +68 -0
  3. package/actions/display.js +7 -0
  4. package/actions/editing.js +7 -0
  5. package/actions/layerinfo.js +7 -0
  6. package/actions/layers.js +8 -0
  7. package/actions/localConfig.js +7 -0
  8. package/actions/locale.js +10 -0
  9. package/actions/locate.js +8 -0
  10. package/actions/logging.js +7 -0
  11. package/actions/map.js +15 -0
  12. package/actions/measurement.js +8 -0
  13. package/actions/processNotifications.js +7 -0
  14. package/actions/redlining.js +7 -0
  15. package/actions/redliningPick.js +7 -0
  16. package/actions/serviceinfo.js +7 -0
  17. package/actions/task.js +9 -0
  18. package/actions/theme.js +24 -0
  19. package/actions/windows.js +10 -0
  20. package/components/AppMenu.js +8 -0
  21. package/components/AttributeForm.js +34 -0
  22. package/components/AutoEditForm.js +8 -0
  23. package/components/CoordinateDisplayer.js +7 -0
  24. package/components/EditComboField.js +10 -0
  25. package/components/EditUploadField.js +8 -0
  26. package/components/FullscreenSwitcher.js +8 -0
  27. package/components/Icon.js +7 -0
  28. package/components/IdentifyViewer.js +16 -0
  29. package/components/ImportLayer.js +25 -0
  30. package/components/LayerInfoWindow.js +7 -0
  31. package/components/LinkFeatureForm.js +10 -0
  32. package/components/MapSelection.js +13 -0
  33. package/components/NumericInputWindow.js +7 -0
  34. package/components/PickFeature.js +7 -0
  35. package/components/PluginsContainer.js +8 -0
  36. package/components/PrintSelection.js +54 -0
  37. package/components/QtDesignerForm.js +30 -0
  38. package/components/ResizeableWindow.js +12 -0
  39. package/components/SearchBox.js +26 -0
  40. package/components/ServiceInfoWindow.js +7 -0
  41. package/components/SideBar.js +9 -0
  42. package/components/StandardApp.js +35 -0
  43. package/components/Swipeable.js +1 -0
  44. package/components/TaskBar.js +7 -0
  45. package/components/ThemeLayersListWindow.js +9 -0
  46. package/components/ThemeList.js +12 -0
  47. package/components/Toolbar.js +7 -0
  48. package/components/WindowManager.js +7 -0
  49. package/components/map/OlLayer.js +12 -0
  50. package/components/map/OlLocate.css +56 -0
  51. package/components/map/OlLocate.js +17 -0
  52. package/components/map/OlMap.js +11 -0
  53. package/components/map/layers/BingLayer.js +8 -0
  54. package/components/map/layers/GoogleLayer.js +27 -0
  55. package/components/map/layers/GraticuleLayer.js +8 -0
  56. package/components/map/layers/ImageLayer.js +8 -0
  57. package/components/map/layers/MVTLayer.js +7 -0
  58. package/components/map/layers/OSMLayer.js +8 -0
  59. package/components/map/layers/OverlayLayer.js +10 -0
  60. package/components/map/layers/VectorLayer.js +14 -0
  61. package/components/map/layers/WFSLayer.js +11 -0
  62. package/components/map/layers/WMSLayer.js +11 -0
  63. package/components/map/layers/WMTSLayer.js +9 -0
  64. package/components/map/layers/XYZLayer.js +7 -0
  65. package/components/map/layers/index.js +8 -0
  66. package/components/map3d/BottomBar3D.js +7 -0
  67. package/components/map3d/Compare3D.js +12 -0
  68. package/components/map3d/Draw3D.js +10 -0
  69. package/components/map3d/ExportObjects3D.js +17 -0
  70. package/components/map3d/HeightProfile3D.js +8 -0
  71. package/components/map3d/HideObjects3D.js +12 -0
  72. package/components/map3d/Identify3D.js +13 -0
  73. package/components/map3d/LayerTree3D.js +8 -0
  74. package/components/map3d/Map3D.js +29 -0
  75. package/components/map3d/Map3DLight.js +10 -0
  76. package/components/map3d/MapControls3D.js +20 -0
  77. package/components/map3d/MapExport3D.js +11 -0
  78. package/components/map3d/Measure3D.js +23 -0
  79. package/components/map3d/OverviewMap3D.js +9 -0
  80. package/components/map3d/SearchField3D.js +16 -0
  81. package/components/map3d/TopBar3D.js +7 -0
  82. package/components/map3d/View3DSwitcher.js +7 -0
  83. package/components/map3d/drawtool/CreateTool3D.js +9 -0
  84. package/components/map3d/drawtool/EditTool3D.js +9 -0
  85. package/components/map3d/drawtool/NumericInput3D.js +7 -0
  86. package/components/map3d/img/viewcone.svg +124 -0
  87. package/components/map3d/layers/VectorLayer3D.js +7 -0
  88. package/components/map3d/layers/WFSLayer3D.js +8 -0
  89. package/components/map3d/layers/WMSLayer3D.js +7 -0
  90. package/components/map3d/layers/WMTSLayer3D.js +9 -0
  91. package/components/map3d/layers/index.js +8 -0
  92. package/components/map3d/models/arrow.glb +0 -0
  93. package/components/map3d/models/pin.glb +0 -0
  94. package/components/map3d/slices/map3d.js +1 -0
  95. package/components/map3d/style/BottomBar3D.css +67 -0
  96. package/components/map3d/style/Compare3D.css +57 -0
  97. package/components/map3d/style/Draw3D.css +7 -0
  98. package/components/map3d/style/HideObjects3D.css +29 -0
  99. package/components/map3d/style/LayerTree3D.css +126 -0
  100. package/components/map3d/style/Map3D.css +42 -0
  101. package/components/map3d/style/Map3DLight.css +72 -0
  102. package/components/map3d/style/MapControls3D.css +56 -0
  103. package/components/map3d/style/MapExport3D.css +25 -0
  104. package/components/map3d/style/OverviewMap3D.css +37 -0
  105. package/components/map3d/style/SearchField3D.css +7 -0
  106. package/components/map3d/style/View3DSwitcher.css +27 -0
  107. package/components/map3d/utils/Tiles3DStyle.js +1 -0
  108. package/components/share/ShareLink.js +7 -0
  109. package/components/share/ShareQRCode.js +8 -0
  110. package/components/share/ShareSocials.js +9 -0
  111. package/components/share/style/ShareLink.css +13 -0
  112. package/components/share/style/ShareSocials.css +9 -0
  113. package/components/style/App.css +229 -0
  114. package/components/style/AppMenu.css +162 -0
  115. package/components/style/AttributeForm.css +57 -0
  116. package/components/style/AutoEditForm.css +64 -0
  117. package/components/style/DefaultColorScheme.css +60 -0
  118. package/components/style/EditUploadField.css +103 -0
  119. package/components/style/FullscreenSwitcher.css +25 -0
  120. package/components/style/Icon.css +26 -0
  121. package/components/style/IdentifyViewer.css +249 -0
  122. package/components/style/ImportLayer.css +28 -0
  123. package/components/style/LayerInfoWindow.css +46 -0
  124. package/components/style/LinkFeatureForm.css +48 -0
  125. package/components/style/NumericInputWindow.css +11 -0
  126. package/components/style/PickFeature.css +25 -0
  127. package/components/style/PluginsContainer.css +4 -0
  128. package/components/style/QtDesignerForm.css +225 -0
  129. package/components/style/ResizeableWindow.css +178 -0
  130. package/components/style/SearchBox.css +159 -0
  131. package/components/style/ServiceInfoWindow.css +34 -0
  132. package/components/style/SideBar.css +100 -0
  133. package/components/style/TaskBar.css +35 -0
  134. package/components/style/ThemeLayersListWindow.css +47 -0
  135. package/components/style/ThemeList.css +200 -0
  136. package/components/style/Toolbar.css +20 -0
  137. package/components/style/WindowManager.css +50 -0
  138. package/components/timeline/FixedTimeline.js +10 -0
  139. package/components/timeline/InfiniteTimeline.js +13 -0
  140. package/components/timeline/TimelineFeaturesSlider.js +10 -0
  141. package/components/timeline/style/FixedTimeline.css +76 -0
  142. package/components/timeline/style/InfiniteTimeline.css +94 -0
  143. package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
  144. package/components/widgets/AccordeonWidget.js +7 -0
  145. package/components/widgets/ButtonBar.js +7 -0
  146. package/components/widgets/ColorButton.js +8 -0
  147. package/components/widgets/ComboBox.js +7 -0
  148. package/components/widgets/CopyButton.js +7 -0
  149. package/components/widgets/DateTimeInput.js +8 -0
  150. package/components/widgets/EditableSelect.js +8 -0
  151. package/components/widgets/FileSelector.js +9 -0
  152. package/components/widgets/Input.js +7 -0
  153. package/components/widgets/InputContainer.js +7 -0
  154. package/components/widgets/LayerCatalogWidget.js +3 -0
  155. package/components/widgets/MenuButton.js +1 -0
  156. package/components/widgets/ModalDialog.js +7 -0
  157. package/components/widgets/NavBar.js +7 -0
  158. package/components/widgets/NumberInput.js +9 -0
  159. package/components/widgets/PopupMenu.js +1 -0
  160. package/components/widgets/Primitives.js +7 -0
  161. package/components/widgets/ReCaptchaWidget.js +1 -0
  162. package/components/widgets/SearchWidget.js +7 -0
  163. package/components/widgets/Spinner.js +6 -0
  164. package/components/widgets/SuggestionInput.js +7 -0
  165. package/components/widgets/TextInput.js +7 -0
  166. package/components/widgets/ToggleSwitch.js +7 -0
  167. package/components/widgets/VectorLayerPicker.js +8 -0
  168. package/components/widgets/style/AccordeonWidget.css +22 -0
  169. package/components/widgets/style/ButtonBar.css +88 -0
  170. package/components/widgets/style/ColorButton.css +88 -0
  171. package/components/widgets/style/ComboBox.css +83 -0
  172. package/components/widgets/style/CopyButton.css +21 -0
  173. package/components/widgets/style/EditableSelect.css +47 -0
  174. package/components/widgets/style/FileSelector.css +14 -0
  175. package/components/widgets/style/InputContainer.css +34 -0
  176. package/components/widgets/style/LayerCatalogWidget.css +59 -0
  177. package/components/widgets/style/MenuButton.css +122 -0
  178. package/components/widgets/style/ModalDialog.css +50 -0
  179. package/components/widgets/style/NavBar.css +12 -0
  180. package/components/widgets/style/NumberInput.css +76 -0
  181. package/components/widgets/style/SearchWidget.css +43 -0
  182. package/components/widgets/style/Spinner.css +32 -0
  183. package/components/widgets/style/SuggestionInput.css +8 -0
  184. package/components/widgets/style/TextInput.css +94 -0
  185. package/components/widgets/style/ToggleSwitch.css +61 -0
  186. package/components/widgets/style/VectorLayerPicker.css +3 -0
  187. package/icons/2d.svg +70 -0
  188. package/icons/3d.svg +70 -0
  189. package/icons/3d2d.svg +92 -0
  190. package/icons/after.svg +76 -0
  191. package/icons/arrow-down.svg +60 -0
  192. package/icons/arrow-up.svg +60 -0
  193. package/icons/before.svg +76 -0
  194. package/icons/bglayer.svg +71 -0
  195. package/icons/bookmark.svg +170 -0
  196. package/icons/box.svg +63 -0
  197. package/icons/buffer.svg +67 -0
  198. package/icons/camera.svg +118 -0
  199. package/icons/catalog.svg +62 -0
  200. package/icons/checked.svg +80 -0
  201. package/icons/chevron-down.svg +60 -0
  202. package/icons/chevron-left.svg +59 -0
  203. package/icons/chevron-right.svg +60 -0
  204. package/icons/chevron-up.svg +60 -0
  205. package/icons/circle.svg +70 -0
  206. package/icons/clear.svg +62 -0
  207. package/icons/clock.svg +71 -0
  208. package/icons/cog.svg +60 -0
  209. package/icons/collapse.svg +73 -0
  210. package/icons/compare.svg +72 -0
  211. package/icons/cone.svg +58 -0
  212. package/icons/confirm.svg +62 -0
  213. package/icons/copy.svg +60 -0
  214. package/icons/cuboid.svg +58 -0
  215. package/icons/cyclomedia.svg +47 -0
  216. package/icons/cylinder.svg +58 -0
  217. package/icons/dataimport.svg +116 -0
  218. package/icons/detach.svg +79 -0
  219. package/icons/dock.svg +82 -0
  220. package/icons/dock_bottom.svg +82 -0
  221. package/icons/dock_left.svg +84 -0
  222. package/icons/dock_right.svg +84 -0
  223. package/icons/dock_top.svg +84 -0
  224. package/icons/draw.svg +78 -0
  225. package/icons/editdraw.svg +84 -0
  226. package/icons/edited.svg +78 -0
  227. package/icons/editing.svg +118 -0
  228. package/icons/ellipse.svg +72 -0
  229. package/icons/embed.svg +88 -0
  230. package/icons/expand.svg +73 -0
  231. package/icons/export.svg +126 -0
  232. package/icons/eye.svg +127 -0
  233. package/icons/featureform.svg +115 -0
  234. package/icons/fill.svg +62 -0
  235. package/icons/filter.svg +69 -0
  236. package/icons/folder-open.svg +60 -0
  237. package/icons/freehand.svg +82 -0
  238. package/icons/group.svg +76 -0
  239. package/icons/home.svg +60 -0
  240. package/icons/identify_radius.svg +71 -0
  241. package/icons/identify_region.svg +71 -0
  242. package/icons/import.svg +62 -0
  243. package/icons/info-sign.svg +60 -0
  244. package/icons/info.svg +80 -0
  245. package/icons/layers.svg +71 -0
  246. package/icons/light.svg +77 -0
  247. package/icons/line.svg +61 -0
  248. package/icons/line_buffer.svg +65 -0
  249. package/icons/link.svg +75 -0
  250. package/icons/list-alt.svg +111 -0
  251. package/icons/lock.svg +54 -0
  252. package/icons/login.svg +56 -0
  253. package/icons/logout.svg +56 -0
  254. package/icons/map3d.svg +51 -0
  255. package/icons/maximize.svg +84 -0
  256. package/icons/measure.svg +82 -0
  257. package/icons/measure_line.svg +87 -0
  258. package/icons/measure_polygon.svg +88 -0
  259. package/icons/menu-hamburger.svg +60 -0
  260. package/icons/minimize.svg +76 -0
  261. package/icons/minus-sign.svg +60 -0
  262. package/icons/minus.svg +61 -0
  263. package/icons/nav-end.svg +74 -0
  264. package/icons/nav-left.svg +74 -0
  265. package/icons/nav-right.svg +74 -0
  266. package/icons/nav-start.svg +73 -0
  267. package/icons/new.svg +84 -0
  268. package/icons/nodetool.svg +68 -0
  269. package/icons/numericinput.svg +86 -0
  270. package/icons/ok.svg +60 -0
  271. package/icons/open.svg +79 -0
  272. package/icons/open_link.svg +74 -0
  273. package/icons/paint.svg +75 -0
  274. package/icons/pen.svg +41 -0
  275. package/icons/person.svg +44 -0
  276. package/icons/pick.svg +67 -0
  277. package/icons/pick_point.svg +74 -0
  278. package/icons/pick_region.svg +71 -0
  279. package/icons/plus.svg +60 -0
  280. package/icons/point.svg +67 -0
  281. package/icons/point_buffer.svg +74 -0
  282. package/icons/polygon.svg +61 -0
  283. package/icons/print.svg +60 -0
  284. package/icons/pyramid.svg +58 -0
  285. package/icons/radio_checked.svg +78 -0
  286. package/icons/radio_tristate.svg +75 -0
  287. package/icons/radio_unchecked.svg +72 -0
  288. package/icons/rasterexport.svg +124 -0
  289. package/icons/rect.svg +63 -0
  290. package/icons/refresh.svg +44 -0
  291. package/icons/remove.svg +60 -0
  292. package/icons/report.svg +84 -0
  293. package/icons/routing-bicycle.svg +40 -0
  294. package/icons/routing-bus.svg +40 -0
  295. package/icons/routing-cablecar.svg +40 -0
  296. package/icons/routing-car.svg +40 -0
  297. package/icons/routing-ship.svg +40 -0
  298. package/icons/routing-train.svg +40 -0
  299. package/icons/routing-tram.svg +40 -0
  300. package/icons/routing-truck.svg +40 -0
  301. package/icons/routing-walking.svg +40 -0
  302. package/icons/routing.svg +68 -0
  303. package/icons/save.svg +190 -0
  304. package/icons/scale.svg +62 -0
  305. package/icons/screenshot.svg +60 -0
  306. package/icons/search.svg +60 -0
  307. package/icons/selectbox.svg +79 -0
  308. package/icons/share.svg +64 -0
  309. package/icons/snap_edge.svg +79 -0
  310. package/icons/snap_vertex.svg +79 -0
  311. package/icons/sphere.svg +58 -0
  312. package/icons/square.svg +68 -0
  313. package/icons/sync.svg +72 -0
  314. package/icons/text.svg +68 -0
  315. package/icons/themes.svg +81 -0
  316. package/icons/tilt-down.svg +67 -0
  317. package/icons/tilt-left.svg +48 -0
  318. package/icons/tilt-right.svg +48 -0
  319. package/icons/tilt-up.svg +67 -0
  320. package/icons/today.svg +45 -0
  321. package/icons/tools.svg +77 -0
  322. package/icons/transformtool.svg +74 -0
  323. package/icons/transparency.svg +132 -0
  324. package/icons/trash.svg +60 -0
  325. package/icons/tree_minus.svg +81 -0
  326. package/icons/tree_plus.svg +81 -0
  327. package/icons/triangle-down.svg +59 -0
  328. package/icons/triangle-left.svg +60 -0
  329. package/icons/triangle-right.svg +60 -0
  330. package/icons/triangle-up.svg +59 -0
  331. package/icons/tristate.svg +79 -0
  332. package/icons/unchecked.svg +74 -0
  333. package/icons/undock.svg +82 -0
  334. package/icons/undock_bottom.svg +82 -0
  335. package/icons/undock_left.svg +82 -0
  336. package/icons/undock_right.svg +84 -0
  337. package/icons/undock_top.svg +84 -0
  338. package/icons/unmaximize.svg +84 -0
  339. package/icons/unminimize.svg +76 -0
  340. package/icons/up-down-arrow.svg +66 -0
  341. package/icons/warning.svg +72 -0
  342. package/icons/wedge.svg +58 -0
  343. package/icons/zoom.svg +60 -0
  344. package/icons/zoomin.svg +71 -0
  345. package/icons/zoomout.svg +80 -0
  346. package/libs/openlayers.js +11 -0
  347. package/package.json +135 -0
  348. package/plugins/API.js +114 -0
  349. package/plugins/AttributeTable.js +25 -0
  350. package/plugins/Authentication.js +13 -0
  351. package/plugins/BackgroundSwitcher.js +10 -0
  352. package/plugins/Bookmark.js +13 -0
  353. package/plugins/BottomBar.js +10 -0
  354. package/plugins/CookiePopup.js +9 -0
  355. package/plugins/Cyclomedia.js +11 -0
  356. package/plugins/Editing.js +21 -0
  357. package/plugins/FeatureForm.js +21 -0
  358. package/plugins/FeatureSearch.js +11 -0
  359. package/plugins/GeometryDigitizer.js +43 -0
  360. package/plugins/HeightProfile.js +26 -0
  361. package/plugins/Help.js +11 -0
  362. package/plugins/HomeButton.js +9 -0
  363. package/plugins/Identify.js +18 -0
  364. package/plugins/LayerCatalog.js +45 -0
  365. package/plugins/LayerTree.js +15 -0
  366. package/plugins/LocateButton.js +10 -0
  367. package/plugins/Map.js +22 -0
  368. package/plugins/MapCompare.js +11 -0
  369. package/plugins/MapCopyright.js +11 -0
  370. package/plugins/MapExport.js +23 -0
  371. package/plugins/MapFilter.js +20 -0
  372. package/plugins/MapInfoTooltip.js +32 -0
  373. package/plugins/MapLegend.js +14 -0
  374. package/plugins/MapTip.js +15 -0
  375. package/plugins/Measure.js +10 -0
  376. package/plugins/NewsPopup.js +12 -0
  377. package/plugins/Panoramax.js +10 -0
  378. package/plugins/Portal.js +10 -0
  379. package/plugins/Print.js +22 -0
  380. package/plugins/ProcessNotifications.js +11 -0
  381. package/plugins/Redlining.js +12 -0
  382. package/plugins/Reports.js +15 -0
  383. package/plugins/Routing.js +23 -0
  384. package/plugins/ScratchDrawing.js +15 -0
  385. package/plugins/Settings.js +12 -0
  386. package/plugins/Share.js +11 -0
  387. package/plugins/StartupMarker.js +12 -0
  388. package/plugins/TaskButton.js +9 -0
  389. package/plugins/ThemeSwitcher.js +10 -0
  390. package/plugins/TimeManager.js +21 -0
  391. package/plugins/TopBar.js +13 -0
  392. package/plugins/ValueTool.js +11 -0
  393. package/plugins/View3D.js +34 -0
  394. package/plugins/ZoomButtons.js +11 -0
  395. package/plugins/map/EditingSupport.js +13 -0
  396. package/plugins/map/LocateSupport.js +14 -0
  397. package/plugins/map/MeasurementSupport.js +15 -0
  398. package/plugins/map/OverviewSupport.js +14 -0
  399. package/plugins/map/RedliningPickSupport.js +12 -0
  400. package/plugins/map/RedliningSupport.js +28 -0
  401. package/plugins/map/ScaleBarSupport.js +10 -0
  402. package/plugins/map/SnapInteraction.js +1 -0
  403. package/plugins/map/SnapSupport.js +7 -0
  404. package/plugins/map/SnappingSupport.js +23 -0
  405. package/plugins/map/style/OverviewSupport.css +42 -0
  406. package/plugins/map/style/ScaleBarSupport.css +18 -0
  407. package/plugins/map/style/SnappingSupport.css +33 -0
  408. package/plugins/redlining/RedliningBufferSupport.js +8 -0
  409. package/plugins/style/AttributeTable.css +220 -0
  410. package/plugins/style/Authentication.css +16 -0
  411. package/plugins/style/BackgroundSwitcher.css +99 -0
  412. package/plugins/style/Bookmark.css +62 -0
  413. package/plugins/style/BottomBar.css +53 -0
  414. package/plugins/style/Buttons.css +68 -0
  415. package/plugins/style/CookiePopup.css +24 -0
  416. package/plugins/style/Cyclomedia.css +66 -0
  417. package/plugins/style/Editing.css +40 -0
  418. package/plugins/style/FeatureForm.css +21 -0
  419. package/plugins/style/FeatureSearch.css +71 -0
  420. package/plugins/style/GeometryDigitizer.css +28 -0
  421. package/plugins/style/HeightProfile.css +26 -0
  422. package/plugins/style/Identify.css +4 -0
  423. package/plugins/style/LayerCatalog.css +8 -0
  424. package/plugins/style/LayerTree.css +316 -0
  425. package/plugins/style/Map.css +43 -0
  426. package/plugins/style/MapCompare.css +27 -0
  427. package/plugins/style/MapCopyright.css +17 -0
  428. package/plugins/style/MapExport.css +55 -0
  429. package/plugins/style/MapFilter.css +101 -0
  430. package/plugins/style/MapInfoTooltip.css +78 -0
  431. package/plugins/style/MapLegend.css +36 -0
  432. package/plugins/style/MapTip.css +22 -0
  433. package/plugins/style/Measure.css +23 -0
  434. package/plugins/style/NewsPopup.css +87 -0
  435. package/plugins/style/Panoramax.css +15 -0
  436. package/plugins/style/Portal.css +115 -0
  437. package/plugins/style/Print.css +116 -0
  438. package/plugins/style/ProcessNotifications.css +55 -0
  439. package/plugins/style/Redlining.css +101 -0
  440. package/plugins/style/Reports.css +11 -0
  441. package/plugins/style/Routing.css +243 -0
  442. package/plugins/style/ScratchDrawing.css +8 -0
  443. package/plugins/style/Settings.css +11 -0
  444. package/plugins/style/Share.css +59 -0
  445. package/plugins/style/ThemeSwitcher.css +7 -0
  446. package/plugins/style/TimeManager.css +91 -0
  447. package/plugins/style/TopBar.css +50 -0
  448. package/plugins/style/ValueTool.css +60 -0
  449. package/reducers/display.js +7 -0
  450. package/reducers/editing.js +8 -0
  451. package/reducers/index.js +7 -0
  452. package/reducers/layerinfo.js +7 -0
  453. package/reducers/layers.js +14 -0
  454. package/reducers/localConfig.js +8 -0
  455. package/reducers/locale.js +8 -0
  456. package/reducers/locate.js +8 -0
  457. package/reducers/map.js +11 -0
  458. package/reducers/measurement.js +8 -0
  459. package/reducers/processNotifications.js +7 -0
  460. package/reducers/redlining.js +7 -0
  461. package/reducers/redliningPick.js +7 -0
  462. package/reducers/serviceinfo.js +7 -0
  463. package/reducers/task.js +7 -0
  464. package/reducers/theme.js +7 -0
  465. package/reducers/windows.js +7 -0
  466. package/scripts/dist.sh +16 -0
  467. package/scripts/gen-plugin-docs.js +9 -0
  468. package/scripts/makeIconkit.js +7 -0
  469. package/scripts/package-commands.bat +8 -0
  470. package/scripts/package-commands.sh +22 -0
  471. package/scripts/themesConfig.js +48 -0
  472. package/scripts/themesConfig.py +659 -0
  473. package/scripts/translateui.sh +51 -0
  474. package/scripts/updateTranslations.js +17 -0
  475. package/scripts/wmts_config_generator.py +169 -0
  476. package/selectors/searchproviders.js +12 -0
  477. package/static/translations/bg-BG.json +709 -0
  478. package/static/translations/ca-ES.json +709 -0
  479. package/static/translations/cs-CZ.json +709 -0
  480. package/static/translations/de-CH.json +709 -0
  481. package/static/translations/de-DE.json +709 -0
  482. package/static/translations/en-US.json +709 -0
  483. package/static/translations/es-ES.json +709 -0
  484. package/static/translations/fi-FI.json +709 -0
  485. package/static/translations/fr-FR.json +709 -0
  486. package/static/translations/hu-HU.json +709 -0
  487. package/static/translations/it-IT.json +709 -0
  488. package/static/translations/ja-JP.json +709 -0
  489. package/static/translations/nl-NL.json +709 -0
  490. package/static/translations/no-NO.json +709 -0
  491. package/static/translations/pl-PL.json +709 -0
  492. package/static/translations/pt-BR.json +709 -0
  493. package/static/translations/pt-PT.json +709 -0
  494. package/static/translations/ro-RO.json +709 -0
  495. package/static/translations/ru-RU.json +709 -0
  496. package/static/translations/sv-SE.json +709 -0
  497. package/static/translations/tr-TR.json +709 -0
  498. package/static/translations/tsconfig.json +606 -0
  499. package/stores/StandardStore.js +8 -0
  500. package/utils/ConfigUtils.js +9 -0
  501. package/utils/CoordinatesUtils.js +29 -0
  502. package/utils/DxfUtils.js +10 -0
  503. package/utils/EditingInterface.js +67 -0
  504. package/utils/EditingUtils.js +11 -0
  505. package/utils/FeatureStyles.js +10 -0
  506. package/utils/IdentifyUtils.js +12 -0
  507. package/utils/ImageEditor.js +15 -0
  508. package/utils/LayerUtils.js +57 -0
  509. package/utils/LocaleUtils.js +9 -0
  510. package/utils/MapUtils.js +66 -0
  511. package/utils/MeasureUtils.js +9 -0
  512. package/utils/MiscUtils.js +15 -0
  513. package/utils/PermaLinkUtils.js +11 -0
  514. package/utils/ResourceRegistry.js +7 -0
  515. package/utils/RoutingInterface.js +12 -0
  516. package/utils/SearchProviders.js +19 -0
  517. package/utils/ServiceLayerUtils.js +20 -0
  518. package/utils/Signal.js +2 -0
  519. package/utils/ThemeUtils.js +12 -0
  520. package/utils/VectorLayerUtils.js +20 -0
  521. package/utils/expr_grammar/README.md +3 -0
  522. package/utils/expr_grammar/grammar.js +3 -0
  523. package/utils/expr_grammar/grammar.ne +118 -0
  524. package/utils/expr_grammar/test.js +13 -0
  525. package/utils/img/README.markers +1 -0
  526. package/utils/img/arrowhead.svg +4 -0
  527. package/utils/img/marker-icon.png +0 -0
  528. package/utils/img/measurehead.svg +4 -0
@@ -0,0 +1,709 @@
1
+ {
2
+ "locale": "ja-JP",
3
+ "messages": {
4
+ "app": {
5
+ "missingbg": "背景が見付かりません \"{0}\", デフォルトの背景を表示します。",
6
+ "missinglayers": "以下のレイヤが見付かりません: {0}。",
7
+ "missingpermalink": "指定された永続リンクは無効または期限切れです。",
8
+ "missingprojection": "テーマをロード出来ません \"{0}\": 投影法 {1} は定義されていません。",
9
+ "missingtheme": "テーマが見付かりません \"{0}\"、デフォルトのテーマをロードします。"
10
+ },
11
+ "appmenu": {
12
+ "filter": "メニューをフィルタ...",
13
+ "items": {
14
+ "Bookmark": "ブックマーク",
15
+ "Compare3D": "比較",
16
+ "Editing": "編集",
17
+ "ExportObjects3D": "オブジェクトをエクスポート",
18
+ "Help": "ヘルプ",
19
+ "HideObjects3D": "オブジェクトを非表示",
20
+ "LayerTree": "レイヤ & 凡例",
21
+ "LayerTree3D": "レイヤ",
22
+ "MapExport": "地図をエクスポート",
23
+ "MapExport3D": "地図をエクスポート",
24
+ "MapFilter": "マップ・フィルタ",
25
+ "MapLight3D": "光と影",
26
+ "Print": "印刷",
27
+ "Reports": "レポート",
28
+ "Settings": "設定",
29
+ "Share": "リンクを共有",
30
+ "ThemeSwitcher": "テーマ",
31
+ "AttributeTable": "属性テーブル",
32
+ "AuthenticationLogin": "ログイン",
33
+ "AuthenticationLogout": "ログアウト",
34
+ "Cyclomedia": "Cyclomedia",
35
+ "Draw3D": "作図",
36
+ "FeatureForm": "地物フォーム",
37
+ "FeatureSearch": "地物検索",
38
+ "GeometryDigitizer": "ジオメトリ・デジタイザ",
39
+ "IdentifyPoint": "点で地物を確認",
40
+ "IdentifyRegion": "領域内の地物を確認",
41
+ "LayerCatalog": "レイヤ・カタログ",
42
+ "Login": "ログイン",
43
+ "Logout": "ログアウト",
44
+ "MapLegend": "凡例",
45
+ "Measure": "計測",
46
+ "Measure3D": "計測",
47
+ "MeasureLineString": "ラインを測る",
48
+ "MeasurePolygon": "ポリゴンを測る",
49
+ "NewsPopup": "ニュース",
50
+ "Panoramax": "Panoramax",
51
+ "Portal": "ポータル",
52
+ "PrintScreen3D": "ラスタ・エクスポート",
53
+ "Redlining": "スケッチ",
54
+ "Routing": "ルート探索",
55
+ "Tools": "地図ツール",
56
+ "TimeManager": "タイム・マネージャ",
57
+ "View3D": "3D 表示"
58
+ },
59
+ "menulabel": "地図 & ツール"
60
+ },
61
+ "attribtable": {
62
+ "addfeature": "地物を追加",
63
+ "commit": "変更された行をコミット",
64
+ "csvexport": "CSV エクスポート",
65
+ "delete": "削除",
66
+ "deletefailed": "一つ以上の地物を削除できませんでした",
67
+ "deletefeatures": "選択された地物を削除",
68
+ "deleting": "地物を削除中...",
69
+ "discard": "変更された行を元に戻す",
70
+ "formeditmode": "選択された地物を編集フォームで開く",
71
+ "geomnoadd": "編集フォームを使ってこのレイヤに新しい地物を追加して下さい",
72
+ "limittoextent": "地図の範囲に限定",
73
+ "loadfailed": "地物のデータをロード出来ませんでした",
74
+ "loading": "ロード中...",
75
+ "nodelete": "削除しない",
76
+ "nogeomnoform": "ジオメトリの無いレイヤに対して編集フォームは使用できません",
77
+ "pleasereload": "「再ロード」を押して属性テーブルをロードして下さい...",
78
+ "reload": "再ロード",
79
+ "selectlayer": "レイヤを選択...",
80
+ "title": "属性テーブル",
81
+ "zoomtoselection": "選択された地物にズーム"
82
+ },
83
+ "bgswitcher": {
84
+ "nobg": "背景無し"
85
+ },
86
+ "bookmark": {
87
+ "add": "新しいブックマークを作成",
88
+ "addfailed": "ブックマークを作成出来ませんでした",
89
+ "description": "説明を入力...",
90
+ "lastUpdate": "最後の保存",
91
+ "manage": "ブックマークを管理",
92
+ "nobookmarks": "ブックマーク無し",
93
+ "notloggedin": "ブックマークを保存するためにはログインする必要があります",
94
+ "open": "ブックマークを現在のタブで開く",
95
+ "openTab": "ブックマークをタブで開く",
96
+ "remove": "ブックマークを削除",
97
+ "removefailed": "ブックマークを削除出来ませんでした",
98
+ "savefailed": "ブックマークを更新出来ませんでした",
99
+ "update": "ブックマークを更新",
100
+ "zoomToExtent": "領域にズーム"
101
+ },
102
+ "bottombar": {
103
+ "mousepos_label": "座標",
104
+ "scale_label": "縮尺",
105
+ "terms_label": "使用許諾条件",
106
+ "viewertitle_label": "QWC2 デモ"
107
+ },
108
+ "compare3d": {
109
+ "clipplane": "クリッピング平面",
110
+ "compare_objects": "オブジェクトを比較",
111
+ "toggleall": "全てトグル"
112
+ },
113
+ "cookiepopup": {
114
+ "accept": "許容する",
115
+ "message": "当ウェブサイトはクッキーを使用します。"
116
+ },
117
+ "copybtn": {
118
+ "click_to_copy": "クリップボードにコピー",
119
+ "copied": "コピーしました",
120
+ "copyfailed": "コピー出来ませんでした"
121
+ },
122
+ "cyclomedia": {
123
+ "clickonmap": "地図上のレコーディングをクリック",
124
+ "initializing": "Cyclomedia を初期設定中...",
125
+ "loaderror": "Cyclomedia を初期設定出来ませんでした",
126
+ "loading": "ビューをロード中...",
127
+ "login": "ログイン",
128
+ "scalehint": "レコーディングは、縮尺 1:{0} 未満の地図でしか見ることが出来ません。",
129
+ "title": "Cyclomedia ビューワ"
130
+ },
131
+ "draw3d": {
132
+ "cone": "円錐",
133
+ "cuboid": "直方体",
134
+ "cylinder": "円柱",
135
+ "delete": "削除",
136
+ "drawings": "作図",
137
+ "intersect": "交差",
138
+ "newgroupprompt": "新しい作図グループ",
139
+ "numericinput": "数値入力",
140
+ "pick": "選択",
141
+ "position": "位置",
142
+ "pyramid": "四角錐",
143
+ "rotate": "回転",
144
+ "rotation": "回転角",
145
+ "scale": "スケール",
146
+ "sphere": "球体",
147
+ "subtract": "差分",
148
+ "thescale": "スケール",
149
+ "translate": "移動",
150
+ "undoBool": "ブーリアン操作を取り消し",
151
+ "union": "合成(和)",
152
+ "wedge": "くさび形"
153
+ },
154
+ "editing": {
155
+ "add": "追加",
156
+ "attrtable": "テーブル",
157
+ "canceldelete": "削除しない",
158
+ "clearpicture": "クリア",
159
+ "commit": "コミット",
160
+ "commitfailed": "コミット出来ませんでした",
161
+ "contraintviolation": "制約違反",
162
+ "create": "作成",
163
+ "delete": "削除",
164
+ "discard": "中止",
165
+ "draw": "作図",
166
+ "feature": "地物",
167
+ "geomreadonly": "ジオメトリが 0 でない Z 値を含んでいるため、リード・オンリーです。",
168
+ "invalidform": "無効なフォーム",
169
+ "maximize": "最大化",
170
+ "minimize": "最小化",
171
+ "noeditablelayers": "編集可能なレイヤが有りません。",
172
+ "paint": "修正",
173
+ "pick": "選択",
174
+ "pickdrawfeature": "既存のジオメトリをクローンして作図",
175
+ "reallydelete": "削除",
176
+ "relationcommitfailed": "関連する値にコミット出来ないものがありました。詳細はアイコンのツールチップを参照して下さい。",
177
+ "select": "選択",
178
+ "takepicture": "撮影する",
179
+ "unsavedchanged": "保存されていない変更があります。それでもこのページを離れますか?"
180
+ },
181
+ "featureform": {
182
+ "feature": "地物",
183
+ "noresults": "検索結果無し",
184
+ "querying": "検索中...",
185
+ "title": "地物フォーム"
186
+ },
187
+ "featuresearch": {
188
+ "noresults": "検索結果無し",
189
+ "query": "検索",
190
+ "select": "選択...",
191
+ "title": "地物検索"
192
+ },
193
+ "fileselector": {
194
+ "files": "ファイル",
195
+ "placeholder": "ファイルを選択..."
196
+ },
197
+ "geomdigitizer": {
198
+ "applink": "アプリケーション",
199
+ "bufferlayername": "デジタイズ・バッファ",
200
+ "chooselink": "選択...",
201
+ "clear": "レイヤをクリア",
202
+ "identifypick": "地物をピック",
203
+ "identifypickregion": "領域内の地物をピック",
204
+ "layername": "デジタイズ",
205
+ "line_buffer": "線を描く (バッファに)",
206
+ "point_buffer": "点を描く (バッファに)",
207
+ "selfinter": "一つ以上のポリゴンが自己交差を持っています",
208
+ "send": "スキャン",
209
+ "wait": "ロード中..."
210
+ },
211
+ "heightprofile": {
212
+ "asl": "a.s.l.",
213
+ "distance": "距離",
214
+ "drawnodes": "ノードを作図",
215
+ "error": "標高プロファイルを計算できませんでした",
216
+ "export": "プロファイルをエクスポート",
217
+ "height": "標高",
218
+ "loading": "標高プロファイルを計算中...",
219
+ "loadingimage": "地図画像をロード中...",
220
+ "print": "標高プロファイルを印刷",
221
+ "title": "標高プロファイル"
222
+ },
223
+ "hideobjects3d": {
224
+ "clickonmap": "非表示にするオブジェクトをクリック...",
225
+ "object": "オブジェクト",
226
+ "restore": "オブジェクトを元に戻す",
227
+ "restoreall": "すべて元に戻す"
228
+ },
229
+ "identify": {
230
+ "aggregatedreport": "集合レポート",
231
+ "clipboard": "クリップボードにコピー",
232
+ "download": "ダウンロード",
233
+ "export": "エクスポート",
234
+ "featureReport": "地物レポート",
235
+ "featurecount": "地物数",
236
+ "layerall": "全てのレイヤ",
237
+ "link": "リンク",
238
+ "noattributes": "属性無し",
239
+ "noresults": "選択された点には情報がありません",
240
+ "querying": "検索中...",
241
+ "reportfail": "レポートを生成することが出来ませんでした",
242
+ "selectlayer": "レイヤを選択...",
243
+ "title": "地物情報"
244
+ },
245
+ "imageeditor": {
246
+ "confirmclose": "保存せずに閉じますか?",
247
+ "title": "イメージ・エディタ"
248
+ },
249
+ "importlayer": {
250
+ "addfailed": "レイヤを追加できませんでした。",
251
+ "addlayer": "レイヤを追加",
252
+ "asgroup": "グループとして追加",
253
+ "connect": "接続",
254
+ "filter": "フィルタ...",
255
+ "loading": "ロード中...",
256
+ "localfile": "ローカル・ファイル",
257
+ "nofeatures": "地物をインポート出来ませんでした。",
258
+ "noresults": "検索結果無し、または無効な URL",
259
+ "notgeopdf": "選択されたファイルは GeoPDF ではないようです。",
260
+ "shpreprojectionerror": "シェープファイルのジオメトリを投影できませんでした。間違った場所に置かれたかも知れません。",
261
+ "supportedformats": "サポートされている形式: KML, GeoJSON, GeoPDF, SHP (zip形式)",
262
+ "unknownproj": "選択された GeoPDF は未知の投影法を使っています: {0}。",
263
+ "url": "URL",
264
+ "urlplaceholder": "WMS, WMTS, WFS の URL を入力..."
265
+ },
266
+ "infotool": {
267
+ "clickhelpPoint": "確認したい地点をクリック...",
268
+ "clickhelpPolygon": "確認したい領域をポリゴンで囲む...",
269
+ "clickhelpRadius": "中心をクリックして半径を指定し、円内を確認...",
270
+ "radius": "半径"
271
+ },
272
+ "layercatalog": {
273
+ "windowtitle": "レイヤ・カタログ"
274
+ },
275
+ "layerinfo": {
276
+ "abstract": "概要",
277
+ "attribution": "帰属",
278
+ "dataUrl": "データ URL",
279
+ "keywords": "キーワード",
280
+ "legend": "凡例",
281
+ "maxscale": "最大描画縮尺",
282
+ "metadataUrl": "メタデータ URL",
283
+ "minscale": "最小描画縮尺",
284
+ "title": "レイヤ情報"
285
+ },
286
+ "layertree": {
287
+ "compare": "トップ・レイヤを比較",
288
+ "deletealllayers": "全てのレイヤを削除",
289
+ "importlayer": "レイヤをインポート",
290
+ "maptip": "レイヤのマップ・チップを表示",
291
+ "printlegend": "凡例を印刷",
292
+ "separator": "区切り",
293
+ "separatortooltip": "区切りを追加",
294
+ "transparency": "透明度",
295
+ "visiblefilter": "不可視のレイヤをフィルタ",
296
+ "zoomtolayer": "レイヤにズーム"
297
+ },
298
+ "layertree3d": {
299
+ "import": "インポート",
300
+ "importobjects": "オブジェクトをインポート",
301
+ "layers": "レイヤ",
302
+ "objects": "オブジェクト",
303
+ "supportedformats": "サポートされている形式",
304
+ "zoomtoobject": "オブジェクトにズーム"
305
+ },
306
+ "linkfeatureform": {
307
+ "cancel": "キャンセル",
308
+ "close": "閉じる",
309
+ "drawhint": "地図上の地物を作図...",
310
+ "pickhint": "地図上の地物を選択..."
311
+ },
312
+ "locate": {
313
+ "feetUnit": "フィート",
314
+ "metersUnit": "メートル",
315
+ "popup": "あなたはこの点から {distance} {unit} 内にいます",
316
+ "statustooltip": {
317
+ "DISABLED": "位置情報: 無効",
318
+ "ENABLED": "位置情報: 有効",
319
+ "FOLLOWING": "位置情報: 追跡中",
320
+ "LOCATING": "位置情報: 取得中...",
321
+ "PERMISSION_DENIED": "位置情報: 許可無し"
322
+ }
323
+ },
324
+ "map": {
325
+ "loading": "ロード中...",
326
+ "resetrotation": "回転をリセット"
327
+ },
328
+ "map3d": {
329
+ "syncview": "ビューを同期",
330
+ "terrain": "地形",
331
+ "title": "3D ビュー"
332
+ },
333
+ "mapexport": {
334
+ "configuration": "構成",
335
+ "format": "形式",
336
+ "resolution": "解像度",
337
+ "scale": "縮尺",
338
+ "size": "サイズ",
339
+ "submit": "エクスポート",
340
+ "usersize": "マップ上で選択...",
341
+ "wait": "しばらくお待ちください..."
342
+ },
343
+ "mapfilter": {
344
+ "addcustomfilter": "カスタム・フィルタを追加",
345
+ "brokenrendering": "無効なフィルタ式によって地図の表示が崩れることがあります",
346
+ "cancel": "キャンセル",
347
+ "geomfilter": "ジオメトリ",
348
+ "hidefiltergeom": "フィルタ・ジオメトリを隠す",
349
+ "invalidfilter": "無効なフィルタ式",
350
+ "save": "保存",
351
+ "select": "選択...",
352
+ "selectlayer": "レイヤを選択",
353
+ "timefilter": "Time",
354
+ "timefrom": "From",
355
+ "timeto": "To"
356
+ },
357
+ "mapinfotooltip": {
358
+ "elevation": "標高",
359
+ "title": "位置"
360
+ },
361
+ "maplegend": {
362
+ "bboxdependent": "領域依存の凡例",
363
+ "onlyvisible": "可視レイヤのみ",
364
+ "scaledependent": "縮尺依存の凡例",
365
+ "windowtitle": "凡例"
366
+ },
367
+ "maplight3d": {
368
+ "ambientLightIntensity": "環境光強度",
369
+ "animationstep": "アニメーション・ステップ",
370
+ "date": "日付",
371
+ "dayspersec": "日数 / 秒",
372
+ "directionalLightIntensity": "平行光源強度",
373
+ "helpersVisible": "補助オブジェクト表示",
374
+ "minspersec": "分 / 秒",
375
+ "normalBias": "ノーマル・バイアス",
376
+ "shadowBias": "シャドウ・バイアス",
377
+ "shadowMapSize": "シャドウ・マップ・サイズ",
378
+ "shadowType": "シャドウ・タイプ",
379
+ "shadowVolumeFar": "シャドウ・ボリューム遠端",
380
+ "shadowVolumeNear": "シャドウ・ボリューム近端",
381
+ "shadowintensity": "影の強度",
382
+ "shadows": "シャドウを有効化",
383
+ "showadvanced": "詳細設定を表示",
384
+ "time": "時刻",
385
+ "zFactor": "Zファクター"
386
+ },
387
+ "measureComponent": {
388
+ "absolute": "m (海抜)",
389
+ "areaLabel": "領域",
390
+ "bearingLabel": "方角",
391
+ "ground": "m (地上高)",
392
+ "imperial": "ヤード・ポンド法",
393
+ "lengthLabel": "長さ",
394
+ "metric": "メートル法",
395
+ "pointLabel": "位置"
396
+ },
397
+ "misc": {
398
+ "ctrlclickhint": "Ctrl+クリックで開く"
399
+ },
400
+ "navbar": {
401
+ "perpage": "/ page"
402
+ },
403
+ "newspopup": {
404
+ "dialogclose": "閉じる",
405
+ "dontshowagain": "再び表示しない",
406
+ "title": "ニュース"
407
+ },
408
+ "numericinput": {
409
+ "angle": "角度",
410
+ "featureunsupported": "このジオメトリに対しては数値入力は使用できません",
411
+ "height": "高さ",
412
+ "nofeature": "アクティブな地物がありません",
413
+ "side": "サイド",
414
+ "width": "幅",
415
+ "windowtitle": "数値入力"
416
+ },
417
+ "panoramax": {
418
+ "notfound": "この場所には表示できる画像がありません。",
419
+ "title": "Panoramax Viewer"
420
+ },
421
+ "pickfeature": {
422
+ "querying": "検索中..."
423
+ },
424
+ "portal": {
425
+ "filter": "テーマをフィルタ...",
426
+ "menulabel": "メニュー"
427
+ },
428
+ "print": {
429
+ "atlasfeature": "地図帳機能",
430
+ "download": "ダウンロード",
431
+ "download_as_onepdf": "1個の PDF 文書として",
432
+ "download_as_onezip": "1個の ZIP ファイルとして",
433
+ "download_as_single": "as single files",
434
+ "format": "形式",
435
+ "grid": "グリッド",
436
+ "layout": "レイアウト",
437
+ "legend": "凡例",
438
+ "maximize": "最大化",
439
+ "minimize": "最小化",
440
+ "nolayouts": "選択されたテーマは印刷をサポートしていません",
441
+ "notheme": "テーマが選択されていません",
442
+ "output": "出力を印刷",
443
+ "overlap": "オーバーラップ",
444
+ "pickatlasfeature": "レイヤ {0} で選択...",
445
+ "resolution": "解像度",
446
+ "rotation": "回転",
447
+ "save": "保存",
448
+ "scale": "縮尺",
449
+ "series": "シリーズを印刷",
450
+ "submit": "印刷",
451
+ "wait": "しばらくお待ち下さい..."
452
+ },
453
+ "qtdesignerform": {
454
+ "loading": "フォームをロード中..."
455
+ },
456
+ "redlining": {
457
+ "border": "境界線",
458
+ "buffer": "バッファ",
459
+ "buffercompute": "計算",
460
+ "bufferdistance": "距離",
461
+ "bufferlayer": "出力先",
462
+ "bufferlayername": "バッファ",
463
+ "bufferselectfeature": "バッファを適用する地物を選択...",
464
+ "circle": "円",
465
+ "delete": "削除",
466
+ "draw": "作図",
467
+ "edit": "編集",
468
+ "ellipse": "楕円",
469
+ "export": "エクスポート",
470
+ "freehand": "フリーハンド描画",
471
+ "label": "ラベル",
472
+ "layer": "レイヤ",
473
+ "layertitle": "スケッチ",
474
+ "line": "線",
475
+ "markers": "マーカー",
476
+ "measurements": "計測結果を表示",
477
+ "numericinput": "数値入力",
478
+ "pick": "ピック",
479
+ "point": "点",
480
+ "polygon": "ポリゴン",
481
+ "rectangle": "四角形",
482
+ "size": "サイズ",
483
+ "square": "四角形",
484
+ "text": "テキスト",
485
+ "transform": "変形",
486
+ "width": "幅"
487
+ },
488
+ "reports": {
489
+ "all": "全て",
490
+ "download": "ダウンロード",
491
+ "pick": "ピック",
492
+ "region": "領域を選択",
493
+ "selectlayer": "レポート・レイヤを選択..."
494
+ },
495
+ "routing": {
496
+ "add": "点を追加",
497
+ "addviapoint": "ここを経由",
498
+ "arriveat": "目的地点",
499
+ "clear": "クリア",
500
+ "computefailed": "計算できませんでした",
501
+ "computing": "計算中...",
502
+ "excludepolygons": "領域を除外",
503
+ "export": "エクスポート",
504
+ "fastest": "最速",
505
+ "fromhere": "出発地点",
506
+ "importerror": "インポート出来ませんでした。ファイルの中身は点地物の GeoJSON FeatureCollection でなければなりません。",
507
+ "importhint": "点地物の GeoJSON FeatureCollection を持つファイル",
508
+ "importpoints": "インポート",
509
+ "iso_intervals": "間隔",
510
+ "iso_mode": "モード",
511
+ "iso_mode_distance": "距離",
512
+ "iso_mode_time": "時間",
513
+ "isocenter": "中心",
514
+ "isoextracenter": "追加の中心",
515
+ "leaveat": "出発時刻",
516
+ "leavenow": "今出発する",
517
+ "maxspeed": "最大速度",
518
+ "method": "方法",
519
+ "mode_auto": "車",
520
+ "mode_bicycle": "自転車",
521
+ "mode_heavyvehicle": "大型車両",
522
+ "mode_transit": "乗り換え",
523
+ "mode_walking": "徒歩",
524
+ "optimized_route": "最適化されたルート",
525
+ "reachability": "到達可能性",
526
+ "roundtrip": "往復",
527
+ "route": "ルート",
528
+ "shortest": "最短",
529
+ "tohere": "ここへ行く",
530
+ "useferries": "フェリーを使う",
531
+ "usehighways": "高速道路を使う",
532
+ "usetollways": "有料道路を使う",
533
+ "windowtitle": "ルート探索"
534
+ },
535
+ "scratchdrawing": {
536
+ "finish": "完了"
537
+ },
538
+ "search": {
539
+ "all": "全て",
540
+ "circleradius": "円の半径",
541
+ "clearfilter": "クリア",
542
+ "existinglayer": "レイヤは既に地図の中に存在します",
543
+ "filter": "検索を詳細化",
544
+ "layers": "レイヤ",
545
+ "limittoarea": "領域に限定",
546
+ "more": "その他 {0} の検索結果",
547
+ "nodescription": "説明がありません",
548
+ "none": "無し",
549
+ "noresults": "検索結果無し",
550
+ "placeholder": "場所を検索、または地図を追加...",
551
+ "places": "場所",
552
+ "providerselection": "検索プロバイダ",
553
+ "recent": "最近の検索",
554
+ "search": "検索",
555
+ "themelayers": "テーマのレイヤ",
556
+ "themes": "テーマ",
557
+ "unknownmore": "更なる結果"
558
+ },
559
+ "serviceinfo": {
560
+ "abstract": "概要",
561
+ "contactEmail": "メール",
562
+ "contactOrganization": "組織",
563
+ "contactPerson": "担当者",
564
+ "contactPhone": "電話",
565
+ "contactPosition": "肩書き",
566
+ "keywords": "キーワード",
567
+ "onlineResource": "オンライン・リソース",
568
+ "title": "テーマの情報"
569
+ },
570
+ "settings": {
571
+ "bookmarks": "ブックマーク",
572
+ "colorscheme": "カラー・スキーム",
573
+ "confirmlang": "言語を変更するためにアプリケーションを再ロードします。よろしいか?",
574
+ "default": "デフォルト",
575
+ "defaulttheme": "デフォルト・テーマ",
576
+ "defaultthemefailed": "デフォルト・テーマを設定出来ませんでした: {0}",
577
+ "language": "言語",
578
+ "systemlang": "システム言語",
579
+ "themes": "テーマ"
580
+ },
581
+ "share": {
582
+ "QRCodeLinkTitle": "QR コード",
583
+ "directLinkTitle": "直接リンクで",
584
+ "expires": "この永続リンクは {0} まで有効です。",
585
+ "norestriction": "限定無し",
586
+ "refresh": "永続リンクを生成",
587
+ "restricttogroup": "グループに限定",
588
+ "shareTitle": "QWC2",
589
+ "showpin": "ピンを表示",
590
+ "socialIntro": "あなたの好みの SNS で"
591
+ },
592
+ "snapping": {
593
+ "edge": "周縁にスナップ",
594
+ "loading": "スナップしたジオメトリをロード中...",
595
+ "snappingenabled": "スナップ有効",
596
+ "vertex": "頂点にスナップ"
597
+ },
598
+ "themelayerslist": {
599
+ "addlayer": "レイヤを追加",
600
+ "addlayerstotheme": "現在の地図にレイヤを追加",
601
+ "addselectedlayers": "選択されたレイヤを追加",
602
+ "existinglayers": "以下のレイヤは既に地図の中に存在します"
603
+ },
604
+ "themeswitcher": {
605
+ "addlayerstotheme": "現在の地図にレイヤを追加",
606
+ "addtotheme": "現在のテーマに追加",
607
+ "changedefaulttheme": "このテーマをデフォルト・テーマとして選択する",
608
+ "confirmswitch": "テーマに無いレイヤはテーマを切替えると失われます。よろしいか?",
609
+ "filter": "フィルタ...",
610
+ "match": {
611
+ "abstract": "概要",
612
+ "keywords": "キーワード",
613
+ "title": "タイトル"
614
+ },
615
+ "openintab": "タブで開く",
616
+ "restrictedthemeinfo": "テーマを閲覧する権限がありません。ログインして下さい。"
617
+ },
618
+ "timemanager": {
619
+ "animationinterval": "アニメーション間隔",
620
+ "classify": "定義属性",
621
+ "classifynone": "無し",
622
+ "displayfeatures": "タイムラインと地物",
623
+ "displaylayers": "タイムラインとレイヤ",
624
+ "displayminimal": "タイムラインのみ",
625
+ "edit": "編集",
626
+ "endtime": "終了",
627
+ "filterwarning": "マップ・フィルタがアクティブです",
628
+ "future": "地物",
629
+ "group": "グループ化属性",
630
+ "groupnone": "無し",
631
+ "home": "タイムラインをリセット",
632
+ "loading": "ロード中...",
633
+ "loop": "ループ",
634
+ "markers": "マーカー",
635
+ "notemporaldata": "マップの中に時間軸を持つ可視レイヤがありません。",
636
+ "now": "現在",
637
+ "past": "過去",
638
+ "play": "再生",
639
+ "playrev": "逆再生",
640
+ "rewind": "巻き戻し",
641
+ "starttime": "開始",
642
+ "stepback": "後へステップ",
643
+ "stepfwd": "前へステップ",
644
+ "stepsize": "ステップ・サイズ",
645
+ "stop": "停止",
646
+ "timeline": "タイムライン",
647
+ "timeline_fixed": "固定",
648
+ "timeline_infinite": "無限",
649
+ "timelinedisplay": "表示",
650
+ "timelinescale": "タイムスケール (非直線性)",
651
+ "title": "タイム・マネージャ",
652
+ "toggle": "時間ナビゲーション",
653
+ "unit": {
654
+ "century": "世紀",
655
+ "days": "日",
656
+ "decade": "10年",
657
+ "hours": "時間",
658
+ "milliseconds": "ミリ秒",
659
+ "minutes": "分",
660
+ "months": "月",
661
+ "seconds": "秒",
662
+ "years": "年"
663
+ },
664
+ "zoomin": "ズーム・イン",
665
+ "zoomout": "ズーム・アウト"
666
+ },
667
+ "tooltip": {
668
+ "background": "背景を切り替える",
669
+ "fullscreendisable": "全画面モードを終了",
670
+ "fullscreenenable": "全画面モードにする",
671
+ "home": "地図の初期領域を表示",
672
+ "zoomin": "ズーム・イン",
673
+ "zoomout": "ズーム・アウト"
674
+ },
675
+ "valuetool": {
676
+ "all": "",
677
+ "allbands": "",
678
+ "alllayers": "",
679
+ "bands": "",
680
+ "graph": "",
681
+ "layer": "",
682
+ "nodata": "",
683
+ "options": "",
684
+ "selectedbands": "",
685
+ "selectedlayers": "",
686
+ "selectlayersbands": "",
687
+ "showbands": "",
688
+ "showlayers": "",
689
+ "table": "",
690
+ "title": "",
691
+ "visiblelayers": ""
692
+ },
693
+ "vectorlayerpicker": {
694
+ "none": "無し",
695
+ "prompt": "レイヤ名を入力"
696
+ },
697
+ "window": {
698
+ "close": "閉じる",
699
+ "detach": "切り離す",
700
+ "dock": "ドック",
701
+ "embed": "埋め込み",
702
+ "maximize": "最大化",
703
+ "minimize": "最小化",
704
+ "undock": "アンドック",
705
+ "unmaximize": "元のサイズに戻す",
706
+ "unminimize": "元のサイズに戻す"
707
+ }
708
+ }
709
+ }