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": "tr-TR",
3
+ "messages": {
4
+ "app": {
5
+ "missingbg": "Arkaplan bulunamadı \"{0}\", varsayılan arkaplan gösteriliyor.",
6
+ "missinglayers": "Bu katmanlar bulunamıyor: {0}.",
7
+ "missingpermalink": "Belirtilen yer işareti ya da bağlantı geçerli değil.",
8
+ "missingprojection": "Tema yüklenemedi \"{0}\": projeksiyon {1} tanımlı değil.",
9
+ "missingtheme": "Tema bulunamadı \"{0}\", varsayılan tema yükleniyor."
10
+ },
11
+ "appmenu": {
12
+ "filter": "Filtre menüsü...",
13
+ "items": {
14
+ "Bookmark": "Yer işaretleri",
15
+ "Compare3D": "Karşılaştır",
16
+ "Editing": "Düzenleme",
17
+ "ExportObjects3D": "",
18
+ "Help": "Yardım",
19
+ "HideObjects3D": "",
20
+ "LayerTree": "Katmanlar & Gösterim",
21
+ "LayerTree3D": "Katmanlar",
22
+ "MapExport": "Dışarıya ver",
23
+ "MapExport3D": "",
24
+ "MapFilter": "Harita Filtresi",
25
+ "MapLight3D": "Tarih Zaman",
26
+ "Print": "Yazdır",
27
+ "Reports": "Raporlar",
28
+ "Settings": "Ayarlar",
29
+ "Share": "Bağlantı Paylaş",
30
+ "ThemeSwitcher": "Tema",
31
+ "AttributeTable": "Öznitelik Tablosu",
32
+ "AuthenticationLogin": "Giriş",
33
+ "AuthenticationLogout": "Çıkış",
34
+ "Cyclomedia": "Siklomedya",
35
+ "Draw3D": "Çizim",
36
+ "FeatureForm": "Obje Formu",
37
+ "FeatureSearch": "Obje Arama",
38
+ "GeometryDigitizer": "Geometri Sayısallaştırıcı",
39
+ "IdentifyPoint": "Nokta bilgisi al",
40
+ "IdentifyRegion": "Bölgeden Bilgi Al",
41
+ "LayerCatalog": "Katman Kataloğu",
42
+ "Login": "Giriş",
43
+ "Logout": "Çıkış",
44
+ "MapLegend": "Harita Lejandı",
45
+ "Measure": "Ölç",
46
+ "Measure3D": "Ölç",
47
+ "MeasureLineString": "Çizgi Ölç",
48
+ "MeasurePolygon": "Alan Ölç",
49
+ "NewsPopup": "",
50
+ "Panoramax": "",
51
+ "Portal": "Portal",
52
+ "PrintScreen3D": "Görüntüyü ver",
53
+ "Redlining": "Serbest Çizim",
54
+ "Routing": "Navigasyon",
55
+ "Tools": "Harita Araçları",
56
+ "TimeManager": "Zaman Yöneticisi",
57
+ "View3D": "3 Boyutlu Görünüm"
58
+ },
59
+ "menulabel": "Harita & Araçlar"
60
+ },
61
+ "attribtable": {
62
+ "addfeature": "Obje ekle",
63
+ "commit": "Değişen satırı kaydet",
64
+ "csvexport": "CSV olarak ver",
65
+ "delete": "Sil",
66
+ "deletefailed": "Bir ya da daha fazla obje silinemedi",
67
+ "deletefeatures": "Seçili objeleri sil",
68
+ "deleting": "Objeler siliniyor",
69
+ "discard": "Değişiklikleri iptal et",
70
+ "formeditmode": "Seçilen objenin düzenleme formunu aç",
71
+ "geomnoadd": "Bu katmana yeni objeler eklemek için düzenleme formunu kullanın",
72
+ "limittoextent": "Harita sınırlarına getir",
73
+ "loadfailed": "Obje verisi yüklenemedi",
74
+ "loading": "Yükleniyor...",
75
+ "nodelete": "Silme!",
76
+ "nogeomnoform": "geometrisi olmayan katmanlar için düzenleme formu kullanılamaz",
77
+ "pleasereload": "Öznitelik tablosunu yüklemek için 'Yeniden yükle' butonuna basınız...",
78
+ "reload": "Yeniden yükle",
79
+ "selectlayer": "Katman seçiniz...",
80
+ "title": "Öznitelik Tablosu",
81
+ "zoomtoselection": "Seçili objelere yaklaş"
82
+ },
83
+ "bgswitcher": {
84
+ "nobg": "Arkaplan Yok"
85
+ },
86
+ "bookmark": {
87
+ "add": "Yeni yer işareti oluştur",
88
+ "addfailed": "Yer işareti oluşturulamadı",
89
+ "description": "Açıklama giriniz...",
90
+ "lastUpdate": "Son kaydedilen",
91
+ "manage": "Yer işaretlerini yönet",
92
+ "nobookmarks": "Yer işareti yok",
93
+ "notloggedin": "Yer işaretlerini kaydedebilmek için giriş yapmalısınız",
94
+ "open": "Yer işaretini geçerli sekmede aç",
95
+ "openTab": "Yer işaretini yeni sekmede aç",
96
+ "remove": "Yer işaretini sil",
97
+ "removefailed": "Yer işareti silinemedi",
98
+ "savefailed": "Yer işareti kaydedilemedi",
99
+ "update": "Yer işaretini güncelle",
100
+ "zoomToExtent": "Kapsama yaklaş"
101
+ },
102
+ "bottombar": {
103
+ "mousepos_label": "Koordinatlar",
104
+ "scale_label": "Ölçek",
105
+ "terms_label": "Kullanım Şartları",
106
+ "viewertitle_label": "QWC"
107
+ },
108
+ "compare3d": {
109
+ "clipplane": "Kırpma düzlemi",
110
+ "compare_objects": "Objeleri karşılaştır",
111
+ "toggleall": "Tümünü aç-kapat"
112
+ },
113
+ "cookiepopup": {
114
+ "accept": "Kabul",
115
+ "message": "Bu web sitesi çerez kullanıyor."
116
+ },
117
+ "copybtn": {
118
+ "click_to_copy": "Kopyalamak için tıkla",
119
+ "copied": "Kopyalandı",
120
+ "copyfailed": "Kopyalanamadı"
121
+ },
122
+ "cyclomedia": {
123
+ "clickonmap": "Haritadaki bir kayda tıklayın",
124
+ "initializing": "Cyclomedia başlatılıyor...",
125
+ "loaderror": "Cyclomedia yüklenemedi",
126
+ "loading": "Görünüm yükleniyor...",
127
+ "login": "Giriş",
128
+ "scalehint": "Kayıtlar ancak 1:{0} ölçeğin altında görüntülenebilir",
129
+ "title": "Cyclomedia Görüntüleyici"
130
+ },
131
+ "draw3d": {
132
+ "cone": "Koni",
133
+ "cuboid": "Kübik",
134
+ "cylinder": "Silindir",
135
+ "delete": "Sil",
136
+ "drawings": "Çizimler",
137
+ "intersect": "",
138
+ "newgroupprompt": "Yeni çizim grubu",
139
+ "numericinput": "Sayısal giriş",
140
+ "pick": "Seç",
141
+ "position": "Yerleşim",
142
+ "pyramid": "Piramit",
143
+ "rotate": "Döndür",
144
+ "rotation": "Dönüklük",
145
+ "scale": "Ölçek",
146
+ "sphere": "Küre",
147
+ "subtract": "",
148
+ "thescale": "Ölçek",
149
+ "translate": "Çevir",
150
+ "undoBool": "",
151
+ "union": "",
152
+ "wedge": "Kama"
153
+ },
154
+ "editing": {
155
+ "add": "Ekle",
156
+ "attrtable": "Tablo",
157
+ "canceldelete": "Silme",
158
+ "clearpicture": "Temizle",
159
+ "commit": "Onayla",
160
+ "commitfailed": "Kayıt başarısız",
161
+ "contraintviolation": "Kısıtlama ihlali",
162
+ "create": "Yeni oluştur",
163
+ "delete": "Sil",
164
+ "discard": "İptal",
165
+ "draw": "Çiz",
166
+ "feature": "Obje",
167
+ "geomreadonly": "Geometri, sıfır olmayan yükseklik değeri içerdiğinden salt okunur",
168
+ "invalidform": "Geçersiz form",
169
+ "maximize": "Büyüt",
170
+ "minimize": "Küçült",
171
+ "noeditablelayers": "Düzenlenebilir katman yok.",
172
+ "paint": "Değiştir",
173
+ "pick": "Seç",
174
+ "pickdrawfeature": "Mevcut geometriyi kopyala",
175
+ "reallydelete": "Sil",
176
+ "relationcommitfailed": "Bazı ilişkili kayıtlar güncellenemedi, detay için ipucu ikonunu kontrol ediniz",
177
+ "select": "Seçim",
178
+ "takepicture": "Fotoğraf çek",
179
+ "unsavedchanged": "Kaydedilmemiş değişiklikler mevcut. Yine de sayfadan ayrılmak istiyor musunuz?"
180
+ },
181
+ "featureform": {
182
+ "feature": "Obje",
183
+ "noresults": "Sonuç yok",
184
+ "querying": "Sorgulanıyor...",
185
+ "title": "Qgis Obje Formu"
186
+ },
187
+ "featuresearch": {
188
+ "noresults": "Sonuç yok",
189
+ "query": "Sorgu",
190
+ "select": "Seçim...",
191
+ "title": "Obje arama"
192
+ },
193
+ "fileselector": {
194
+ "files": "dosyalar",
195
+ "placeholder": "Dosya seç..."
196
+ },
197
+ "geomdigitizer": {
198
+ "applink": "Uygulama",
199
+ "bufferlayername": "Sayısallaştırma tamponu",
200
+ "chooselink": "Seçiniz...",
201
+ "clear": "Katman temizle",
202
+ "identifypick": "Obje seç",
203
+ "identifypickregion": "Bölgeden obje seç",
204
+ "layername": "Sayısallaştırma",
205
+ "line_buffer": "Çizgi (Tampon)",
206
+ "point_buffer": "Nokta (Tampon)",
207
+ "selfinter": "Bir ya da daha fazla poligon kendini kesiyor",
208
+ "send": "Gönder",
209
+ "wait": "Yükleniyor"
210
+ },
211
+ "heightprofile": {
212
+ "asl": "a.s.l.",
213
+ "distance": "Mesafe",
214
+ "drawnodes": "Düğüm noktası çiz",
215
+ "error": "Yükseklik profili hesaplama başarısız",
216
+ "export": "Profili ver",
217
+ "height": "Yükseklik",
218
+ "loading": "Yükseklik profili hesaplanıyor...",
219
+ "loadingimage": "Harita görüntüsü yükleniyor",
220
+ "print": "Yükseklik profili yazdır",
221
+ "title": "Yükseklik profili"
222
+ },
223
+ "hideobjects3d": {
224
+ "clickonmap": "",
225
+ "object": "",
226
+ "restore": "",
227
+ "restoreall": ""
228
+ },
229
+ "identify": {
230
+ "aggregatedreport": "Toplu rapor",
231
+ "clipboard": "Panoya kopyala",
232
+ "download": "İndir",
233
+ "export": "Dışarıya aktar",
234
+ "featureReport": "Obje raporu",
235
+ "featurecount": "Obje sayısı",
236
+ "layerall": "Tüm katmanlar",
237
+ "link": "Bağlantı",
238
+ "noattributes": "Öznitelik yok",
239
+ "noresults": "Seçilen nokta için geçerli bilgi yok",
240
+ "querying": "Sorgulanıyor...",
241
+ "reportfail": "Rapor üretilemedi",
242
+ "selectlayer": "Katman seçiniz...",
243
+ "title": "Obje Bilgisi"
244
+ },
245
+ "imageeditor": {
246
+ "confirmclose": "Kaydetmeden kapat",
247
+ "title": "Resim editörü"
248
+ },
249
+ "importlayer": {
250
+ "addfailed": "Katman ekleme başarısız",
251
+ "addlayer": "Katman ekle",
252
+ "asgroup": "",
253
+ "connect": "Bağlan",
254
+ "filter": "Filtre...",
255
+ "loading": "Yükleniyor...",
256
+ "localfile": "Yerel dosya",
257
+ "nofeatures": "Herhangi bir obje içeriye aktarılamadı.",
258
+ "noresults": "Sonuç yok ya da geçersiz URL",
259
+ "notgeopdf": "Seçilen dosya GeoPDF gibi görünmüyor",
260
+ "shpreprojectionerror": "",
261
+ "supportedformats": "Desteklenen formatlar: KML, GeoJSON, GeoPDF, SHP (zip içinde)",
262
+ "unknownproj": "Seçilen GeoPDF bilinmeyen projeksiyon kullanıyor: {0}.",
263
+ "url": "URL",
264
+ "urlplaceholder": "WMS, WMTS, WFS Adresini giriniz..."
265
+ },
266
+ "infotool": {
267
+ "clickhelpPoint": "Haritadan bilgi almak için bir noktayı tıklayınız...",
268
+ "clickhelpPolygon": "Bilgi alınacak alanı poligon çizerek belirleyiniz...",
269
+ "clickhelpRadius": "Yarıçap belirleyip çevresinden bilgi almak için bir noktayı tıklayınız",
270
+ "radius": "Yarıçap"
271
+ },
272
+ "layercatalog": {
273
+ "windowtitle": "Katman kataloğu"
274
+ },
275
+ "layerinfo": {
276
+ "abstract": "Özet",
277
+ "attribution": "Özellikler",
278
+ "dataUrl": "Veri URL Adresi",
279
+ "keywords": "Anahtar Kelimeler",
280
+ "legend": "Gösterim",
281
+ "maxscale": "Max. görünürlük ölçeği",
282
+ "metadataUrl": "Öznitelik URL",
283
+ "minscale": "Min. görünürlük ölçeği",
284
+ "title": "Katman Bilgisi"
285
+ },
286
+ "layertree": {
287
+ "compare": "En üst katmanı karşılaştır",
288
+ "deletealllayers": "Tüm katmanları kaldır",
289
+ "importlayer": "Katmanı içeri al",
290
+ "maptip": "Katman harita ipuçlarını göster",
291
+ "printlegend": "Yazdırma Lejandı",
292
+ "separator": "Ayırıcı",
293
+ "separatortooltip": "Ayırıcı ekle",
294
+ "transparency": "Şeffaflık",
295
+ "visiblefilter": "Görünmeyen katmanları filtrele",
296
+ "zoomtolayer": "Katman sınırlarına yaklaş"
297
+ },
298
+ "layertree3d": {
299
+ "import": "",
300
+ "importobjects": "",
301
+ "layers": "Katmanlar",
302
+ "objects": "Objeler",
303
+ "supportedformats": "",
304
+ "zoomtoobject": ""
305
+ },
306
+ "linkfeatureform": {
307
+ "cancel": "İptal",
308
+ "close": "Kapat",
309
+ "drawhint": "Haritada bir obje çiziniz...",
310
+ "pickhint": "Haritadan bir obje seçiniz..."
311
+ },
312
+ "locate": {
313
+ "feetUnit": "feet",
314
+ "metersUnit": "metre",
315
+ "popup": "Bu noktadan {distance} {unit} uzaktasınız",
316
+ "statustooltip": {
317
+ "DISABLED": "Konum: geçersiz",
318
+ "ENABLED": "Konum: geçerli",
319
+ "FOLLOWING": "Konum: Takip ediliyor",
320
+ "LOCATING": "Konum: bulunuyor...",
321
+ "PERMISSION_DENIED": "Konum: izin verilmedi"
322
+ }
323
+ },
324
+ "map": {
325
+ "loading": "Yükleniyor...",
326
+ "resetrotation": "Dönüklüğü sıfırla"
327
+ },
328
+ "map3d": {
329
+ "syncview": "Görünümü senkronize et",
330
+ "terrain": "Arazi",
331
+ "title": "3 Boyutlu görünüm"
332
+ },
333
+ "mapexport": {
334
+ "configuration": "Yapılandırma",
335
+ "format": "Format:",
336
+ "resolution": "Çözünürlük:",
337
+ "scale": "Ölçek",
338
+ "size": "Boyut",
339
+ "submit": "Ver",
340
+ "usersize": "Haritadan seç...",
341
+ "wait": "Lütfen bekleyiniz..."
342
+ },
343
+ "mapfilter": {
344
+ "addcustomfilter": "Özel filtre ekle",
345
+ "brokenrendering": "Geçersiz filtre ifadesi sebebiyle harita görüntüleme başarısız olabilir",
346
+ "cancel": "İptal",
347
+ "geomfilter": "Geometri",
348
+ "hidefiltergeom": "Geometrileri gizle",
349
+ "invalidfilter": "Geçersiz filtre ifadesi",
350
+ "save": "Kaydet",
351
+ "select": "Seç...",
352
+ "selectlayer": "Katman seç",
353
+ "timefilter": "Zaman",
354
+ "timefrom": "Başlangıç",
355
+ "timeto": "Bitiş"
356
+ },
357
+ "mapinfotooltip": {
358
+ "elevation": "Yükseklik",
359
+ "title": "Konum"
360
+ },
361
+ "maplegend": {
362
+ "bboxdependent": "Harita sınırlarına bağlı lejant",
363
+ "onlyvisible": "Sadece görünen katmanlar",
364
+ "scaledependent": "Harita ölçeğine bağlı",
365
+ "windowtitle": "Lejant"
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": ""
386
+ },
387
+ "measureComponent": {
388
+ "absolute": "Ortalama yükseklik(m)",
389
+ "areaLabel": "Alan",
390
+ "bearingLabel": "Doğrultu",
391
+ "ground": "İrtifa (m)",
392
+ "imperial": "Imperial",
393
+ "lengthLabel": "Uzunluk",
394
+ "metric": "Metrik",
395
+ "pointLabel": "Konum"
396
+ },
397
+ "misc": {
398
+ "ctrlclickhint": "Ctrl+Click ile aç"
399
+ },
400
+ "navbar": {
401
+ "perpage": "sayfa başına"
402
+ },
403
+ "newspopup": {
404
+ "dialogclose": "Kapat",
405
+ "dontshowagain": "Tekrar gösterme",
406
+ "title": "Haberler"
407
+ },
408
+ "numericinput": {
409
+ "angle": "Açı",
410
+ "featureunsupported": "Sayısal değer bu geometri için kullanılamaz",
411
+ "height": "Yükseklik",
412
+ "nofeature": "Aktif obje yok",
413
+ "side": "Taraf",
414
+ "width": "Genişlik",
415
+ "windowtitle": "Sayısal giriş"
416
+ },
417
+ "panoramax": {
418
+ "notfound": "",
419
+ "title": ""
420
+ },
421
+ "pickfeature": {
422
+ "querying": "Sorgulanıyor..."
423
+ },
424
+ "portal": {
425
+ "filter": "Temaları filtrele...",
426
+ "menulabel": "Menü"
427
+ },
428
+ "print": {
429
+ "atlasfeature": "Atlas Objesi",
430
+ "download": "İndir",
431
+ "download_as_onepdf": "tek PDF olarak",
432
+ "download_as_onezip": "ZIP olarak",
433
+ "download_as_single": "tekil dosyalar",
434
+ "format": "Format",
435
+ "grid": "Karelaj",
436
+ "layout": "Yazdırma düzeni",
437
+ "legend": "Lejant",
438
+ "maximize": "Büyüt",
439
+ "minimize": "Küçült",
440
+ "nolayouts": "Seçili tema yazdırma işlemini desteklemiyor",
441
+ "notheme": "Tema seçilmedi",
442
+ "output": "Yazıcı çıktısı",
443
+ "overlap": "Bindirme",
444
+ "pickatlasfeature": "Katmandan seçiniz: {0}...",
445
+ "resolution": "Çözünürlük",
446
+ "rotation": "Döndürme",
447
+ "save": "Kayıt",
448
+ "scale": "Ölçek:",
449
+ "series": "Yazdırma serileri",
450
+ "submit": "Yazdır",
451
+ "wait": "Lütfen bekleyiniz..."
452
+ },
453
+ "qtdesignerform": {
454
+ "loading": "Form yükleniyor..."
455
+ },
456
+ "redlining": {
457
+ "border": "Sınır",
458
+ "buffer": "Tampon",
459
+ "buffercompute": "Hesapla",
460
+ "bufferdistance": "Mesafe",
461
+ "bufferlayer": "Hedef",
462
+ "bufferlayername": "Tampon",
463
+ "bufferselectfeature": "Tampon atılacak bir obje seçiniz...",
464
+ "circle": "Daire",
465
+ "delete": "Sil",
466
+ "draw": "Çiz",
467
+ "edit": "Düzenle",
468
+ "ellipse": "Elips",
469
+ "export": "Dışarıya ver",
470
+ "freehand": "Serbest çizim",
471
+ "label": "Etiket",
472
+ "layer": "Katman",
473
+ "layertitle": "Eskiz",
474
+ "line": "Çizgi",
475
+ "markers": "İşaretçiler",
476
+ "measurements": "Ölçüleri göster",
477
+ "numericinput": "Sayısal giriş panelini göster",
478
+ "pick": "Seç",
479
+ "point": "Nokta",
480
+ "polygon": "Poligon",
481
+ "rectangle": "Dikdörtgen",
482
+ "size": "Boyut",
483
+ "square": "Kare",
484
+ "text": "Metin",
485
+ "transform": "Dönüşüm",
486
+ "width": "Genişlik"
487
+ },
488
+ "reports": {
489
+ "all": "Tümü",
490
+ "download": "İndir",
491
+ "pick": "Seç",
492
+ "region": "Bölge seçiniz",
493
+ "selectlayer": "Rapor katmanını seçiniz..."
494
+ },
495
+ "routing": {
496
+ "add": "Nokta ekle",
497
+ "addviapoint": "Burası üzerinden",
498
+ "arriveat": "Varış noktası",
499
+ "clear": "Temizle",
500
+ "computefailed": "Hesaplama başarısız",
501
+ "computing": "Hesaplanıyor...",
502
+ "excludepolygons": "Alanları hariç tut",
503
+ "export": "Dışarı ver",
504
+ "fastest": "En hızlı",
505
+ "fromhere": "Buradan",
506
+ "importerror": "İçeri alma başarısız. Dosya içeriği noktalardan oluşan GeoJSON FeatureCollection olmalı.",
507
+ "importhint": "GeoJSON nokta objeleri kolleksiyonu",
508
+ "importpoints": "İçeri al",
509
+ "iso_intervals": "Zaman aralığı",
510
+ "iso_mode": "Mod",
511
+ "iso_mode_distance": "Mesafe",
512
+ "iso_mode_time": "Zaman",
513
+ "isocenter": "Merkez",
514
+ "isoextracenter": "İlave merkez",
515
+ "leaveat": "Çıkış zamanı",
516
+ "leavenow": "Şimdi çık",
517
+ "maxspeed": "Maksimum hız",
518
+ "method": "Metot",
519
+ "mode_auto": "Araba",
520
+ "mode_bicycle": "Bisiklet",
521
+ "mode_heavyvehicle": "Ağır vasıta",
522
+ "mode_transit": "Transit",
523
+ "mode_walking": "Yaya",
524
+ "optimized_route": "Optimize edilmiş rota",
525
+ "reachability": "Erişilebilirlik",
526
+ "roundtrip": "Gidiş",
527
+ "route": "Rota",
528
+ "shortest": "En kısa",
529
+ "tohere": "Buraya",
530
+ "useferries": "Feribot kullan",
531
+ "usehighways": "Otoyolları kullan",
532
+ "usetollways": "Ücretli Yolları kullan",
533
+ "windowtitle": "Navigasyon"
534
+ },
535
+ "scratchdrawing": {
536
+ "finish": "Bitir"
537
+ },
538
+ "search": {
539
+ "all": "Tümü",
540
+ "circleradius": "Daire yarıçapı",
541
+ "clearfilter": "Temizle",
542
+ "existinglayer": "Katman zaten haritada mevcut",
543
+ "filter": "Gelişmiş arama",
544
+ "layers": "Katmanlar",
545
+ "limittoarea": "Bölgeyle sınırla",
546
+ "more": "{0} daha fazla sonuç",
547
+ "nodescription": "Açıklama yok",
548
+ "none": "Yok",
549
+ "noresults": "Sonuç yok",
550
+ "placeholder": "Bir yer ara ya da harita ekle...",
551
+ "places": "Yerler",
552
+ "providerselection": "Arama sağlayıcılar",
553
+ "recent": "Son aramalar",
554
+ "search": "Ara",
555
+ "themelayers": "Tema katmanları",
556
+ "themes": "Temalar",
557
+ "unknownmore": ""
558
+ },
559
+ "serviceinfo": {
560
+ "abstract": "Özet",
561
+ "contactEmail": "Email",
562
+ "contactOrganization": "Organizasyon",
563
+ "contactPerson": "İletişim kişisi",
564
+ "contactPhone": "Telefon",
565
+ "contactPosition": "Konum",
566
+ "keywords": "Anahtar kelimeler",
567
+ "onlineResource": "Çevrimiçi kaynaklar",
568
+ "title": "Tema bilgisi"
569
+ },
570
+ "settings": {
571
+ "bookmarks": "Yer işaretleri",
572
+ "colorscheme": "Renk şeması",
573
+ "confirmlang": "Dil değişikliği için uygulama yeniden yüklenecek. Devam edilsin mi?",
574
+ "default": "Varsayılan",
575
+ "defaulttheme": "Varsayılan tema",
576
+ "defaultthemefailed": "Varsayılan tema yüklenemedi: {0}",
577
+ "language": "Dil",
578
+ "systemlang": "Sistem dili",
579
+ "themes": "Temalar"
580
+ },
581
+ "share": {
582
+ "QRCodeLinkTitle": "Karekod",
583
+ "directLinkTitle": "Doğrudan bağlantı yolu ile",
584
+ "expires": "Bu bağlantı {0} zamanına kadar geçerlidir",
585
+ "norestriction": "",
586
+ "refresh": "Bağlantı oluştur",
587
+ "restricttogroup": "",
588
+ "shareTitle": "QWC2",
589
+ "showpin": "Pini göster",
590
+ "socialIntro": "Favori sosyal ağınıza"
591
+ },
592
+ "snapping": {
593
+ "edge": "Kenarları yakala",
594
+ "loading": "Yakalanan geometriler yükleniyor...",
595
+ "snappingenabled": "Yakalama",
596
+ "vertex": "Kırık noktalarını yakala"
597
+ },
598
+ "themelayerslist": {
599
+ "addlayer": "Katman ekle",
600
+ "addlayerstotheme": "Geçerli haritaya katman ekle",
601
+ "addselectedlayers": "Seçili katmanları ekle",
602
+ "existinglayers": "Belirtilen katmanlar zaten haritada mevcut"
603
+ },
604
+ "themeswitcher": {
605
+ "addlayerstotheme": "Geçerli haritaya katmanları ekle",
606
+ "addtotheme": "Geçerli temaya ekle",
607
+ "changedefaulttheme": "Bu temayı varsayılan yap",
608
+ "confirmswitch": "Tema değiştirildiğinde temaya ait olmayan katmanlar kaldırılacaktır. Devam edilsin mi?",
609
+ "filter": "Filtre...",
610
+ "match": {
611
+ "abstract": "Özet",
612
+ "keywords": "Anahtar kelimeler",
613
+ "title": "Başlık"
614
+ },
615
+ "openintab": "Sekmede aç",
616
+ "restrictedthemeinfo": "Bu temayı görmeye yetkiniz yok"
617
+ },
618
+ "timemanager": {
619
+ "animationinterval": "Animasyon süresi",
620
+ "classify": "Sınıflandırma özelliği",
621
+ "classifynone": "Yok",
622
+ "displayfeatures": "Objeler ile birlikte zaman akışı",
623
+ "displaylayers": "Katmanlar ile birlikte zaman akışı",
624
+ "displayminimal": "Sadece zaman akışı",
625
+ "edit": "Düzenle",
626
+ "endtime": "Son",
627
+ "filterwarning": "Harita filtreleri aktif",
628
+ "future": "Gelecek",
629
+ "group": "Gruplama özelliği",
630
+ "groupnone": "Yok",
631
+ "home": "Zaman akışını sıfırla",
632
+ "loading": "Yükleniyor...",
633
+ "loop": "Döngü",
634
+ "markers": "İşaretçiler",
635
+ "notemporaldata": "Haritada görünür geçici katman yok",
636
+ "now": "Şimdi",
637
+ "past": "Geçmiş",
638
+ "play": "Oynat",
639
+ "playrev": "Geriye oynat",
640
+ "rewind": "Geri sarma",
641
+ "starttime": "Başlangıç",
642
+ "stepback": "Geri adım",
643
+ "stepfwd": "İleri adım",
644
+ "stepsize": "Adım boyutu",
645
+ "stop": "Dur",
646
+ "timeline": "Zaman akışı",
647
+ "timeline_fixed": "Sabit",
648
+ "timeline_infinite": "Sonsuz",
649
+ "timelinedisplay": "Göster",
650
+ "timelinescale": "Zaman ölçeği (doğrusal olmayan)",
651
+ "title": "Zaman Yöneticisi",
652
+ "toggle": "Geçici navigasyon",
653
+ "unit": {
654
+ "century": "yüzyıllar",
655
+ "days": "günler",
656
+ "decade": "onyıllar",
657
+ "hours": "saatler",
658
+ "milliseconds": "milisaniyeler",
659
+ "minutes": "dakikalar",
660
+ "months": "aylar",
661
+ "seconds": "saniyeler",
662
+ "years": "yıllar"
663
+ },
664
+ "zoomin": "Yaklaş",
665
+ "zoomout": "Uzaklaş"
666
+ },
667
+ "tooltip": {
668
+ "background": "Arkaplanı değiştir",
669
+ "fullscreendisable": "Tam ekran görünümünden çık",
670
+ "fullscreenenable": "Tam ekran görünümü",
671
+ "home": "Haritanın tamamını göster",
672
+ "zoomin": "Yaklaş",
673
+ "zoomout": "Uzaklaş"
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": "Yok",
695
+ "prompt": "Katman adı giriniz"
696
+ },
697
+ "window": {
698
+ "close": "Kapat",
699
+ "detach": "Çöz",
700
+ "dock": "Sabitle",
701
+ "embed": "Yerleştir",
702
+ "maximize": "Maksimize",
703
+ "minimize": "Minimize",
704
+ "undock": "Çöz",
705
+ "unmaximize": "Eski haline getir",
706
+ "unminimize": "Küçültmeyi kaldır"
707
+ }
708
+ }
709
+ }