qwc2 2025.12.4 → 2025.12.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/IdentifyViewer.js +89 -35
- package/components/ResizeableWindow.js +8 -0
- package/components/SearchBox.js +12 -5
- package/components/SideBar.js +4 -0
- package/components/style/IdentifyViewer.css +7 -5
- package/components/widgets/EditableSelect.js +2 -1
- package/components/widgets/LayerCatalogWidget.js +25 -14
- package/components/widgets/MenuButton.js +7 -2
- package/components/widgets/NavBar.js +4 -2
- package/components/widgets/PopupMenu.js +44 -13
- package/components/widgets/SearchWidget.js +39 -50
- package/components/widgets/style/SearchWidget.css +3 -19
- package/icons/oblique.svg +53 -0
- package/package.json +3 -2
- package/plugins/Cyclomedia.js +2 -1
- package/plugins/HeightProfile.js +4 -1
- package/plugins/Identify.js +4 -0
- package/plugins/LayerTree.js +5 -1
- package/plugins/Measure.js +5 -1
- package/plugins/ObliqueView.js +410 -0
- package/plugins/Print.js +1 -1
- package/plugins/TopBar.js +2 -0
- package/plugins/map/MeasurementSupport.js +1 -0
- package/plugins/map/RedliningSupport.js +7 -5
- package/plugins/style/Map.css +4 -2
- package/plugins/style/ObliqueView.css +112 -0
- package/reducers/layers.js +18 -36
- package/reducers/measurement.js +2 -1
- package/scripts/themesConfig.js +1 -0
- package/scripts/themesConfig.py +2 -0
- package/scripts/wmts_config_generator.py +1 -1
- package/static/translations/bg-BG.json +11 -1
- package/static/translations/ca-ES.json +11 -1
- package/static/translations/cs-CZ.json +11 -1
- package/static/translations/de-CH.json +11 -1
- package/static/translations/de-DE.json +11 -1
- package/static/translations/en-US.json +11 -1
- package/static/translations/es-ES.json +11 -1
- package/static/translations/fi-FI.json +11 -1
- package/static/translations/fr-FR.json +12 -2
- package/static/translations/hu-HU.json +11 -1
- package/static/translations/it-IT.json +11 -1
- package/static/translations/ja-JP.json +11 -1
- package/static/translations/nl-NL.json +11 -1
- package/static/translations/no-NO.json +11 -1
- package/static/translations/pl-PL.json +11 -1
- package/static/translations/pt-BR.json +11 -1
- package/static/translations/pt-PT.json +11 -1
- package/static/translations/ro-RO.json +11 -1
- package/static/translations/ru-RU.json +11 -1
- package/static/translations/sv-SE.json +11 -1
- package/static/translations/tr-TR.json +11 -1
- package/static/translations/tsconfig.json +8 -0
- package/static/translations/uk-UA.json +11 -1
- package/utils/FeatureStyles.js +5 -2
- package/utils/MiscUtils.js +2 -1
- package/utils/VectorLayerUtils.js +14 -5
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Misura una linea",
|
|
51
51
|
"MeasurePolygon": "Misura un poligono",
|
|
52
52
|
"NewsPopup": "Attualità",
|
|
53
|
+
"ObliqueView": "Vista aerea obliqua",
|
|
53
54
|
"Panoramax": "Panoramax",
|
|
54
55
|
"Portal": "Portale",
|
|
55
56
|
"PrintScreen3D": "Esporta raster",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "{0} oggetti",
|
|
268
269
|
"layerall": "Tutti i livelli",
|
|
269
270
|
"link": "Link",
|
|
271
|
+
"multiview": "Vista multipla",
|
|
270
272
|
"noattributes": "Nessun attributo",
|
|
271
273
|
"noresults": "Nessun risultato",
|
|
272
274
|
"querying": "Caricando...",
|
|
273
275
|
"reportfail": "Errore nella generazione del rapporto",
|
|
274
276
|
"results": "Risultati",
|
|
277
|
+
"selectforcompare": "Seleziona per confronto",
|
|
275
278
|
"selectreport": "Seleziona rapporto...",
|
|
276
279
|
"title": "Titolo"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Stampa legenda",
|
|
331
334
|
"separator": "Separatore",
|
|
332
335
|
"separatortooltip": "Aggiungi separatore",
|
|
336
|
+
"togglegroup": "Attiva/disattiva gruppo e tutti i sottolivelli",
|
|
333
337
|
"transparency": "Trasparenza",
|
|
334
338
|
"visiblefilter": "Filtra livelli non visibili",
|
|
335
339
|
"zoomtolayer": "Zoom a tutto il livello"
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": "Apri con Ctrl+Click"
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "Prossima pagina",
|
|
453
|
+
"perpage": "per pagina",
|
|
454
|
+
"prev": "Pagina precedente"
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "Chiudi",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "Larghezza",
|
|
462
468
|
"windowtitle": "Formulario numerico"
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "Nessuna immagine aerea obliqua disponibile",
|
|
472
|
+
"title": "Vista aerea obliqua"
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "Nessun immagine disponibile per questa posizione",
|
|
466
476
|
"title": "Visualizzatore Panoramax"
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "ラインを測る",
|
|
51
51
|
"MeasurePolygon": "ポリゴンを測る",
|
|
52
52
|
"NewsPopup": "ニュース",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "Panoramax",
|
|
54
55
|
"Portal": "ポータル",
|
|
55
56
|
"PrintScreen3D": "ラスタ・エクスポート",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "全てのレイヤ",
|
|
269
270
|
"link": "リンク",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "属性無し",
|
|
271
273
|
"noresults": "選択された点には情報がありません",
|
|
272
274
|
"querying": "検索中...",
|
|
273
275
|
"reportfail": "レポートを生成することが出来ませんでした",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "レポートを選択...",
|
|
276
279
|
"title": "地物情報"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "凡例を印刷",
|
|
331
334
|
"separator": "区切り",
|
|
332
335
|
"separatortooltip": "区切りを追加",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "透明度",
|
|
334
338
|
"visiblefilter": "不可視のレイヤをフィルタ",
|
|
335
339
|
"zoomtolayer": "レイヤにズーム"
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": "Ctrl+クリックで開く"
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "/ page",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "閉じる",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "幅",
|
|
462
468
|
"windowtitle": "数値入力"
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "この場所には表示できる画像がありません。",
|
|
466
476
|
"title": "Panoramax Viewer"
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "lengte meten",
|
|
51
51
|
"MeasurePolygon": "Oppervlakte meten",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "Portal",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "Link",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Geen attributen",
|
|
271
273
|
"noresults": "Geen informatie beschikbaar voor het aangewezen punt",
|
|
272
274
|
"querying": "Zoeken...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Objectgegevens"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Print legenda",
|
|
331
334
|
"separator": "Scheider",
|
|
332
335
|
"separatortooltip": "Voeg scheider toe",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "Transparantie",
|
|
334
338
|
"visiblefilter": "Filter onzichtbare lagen",
|
|
335
339
|
"zoomtolayer": "Zoom naar laag"
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": "Openen met Ctrl+klik"
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "Per pagina",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "Sluiten",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "Breedte",
|
|
462
468
|
"windowtitle": "Numerieke invoer"
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Måle en linje",
|
|
51
51
|
"MeasurePolygon": "Måle en polygon",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "Lenke",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Ingen attributt",
|
|
271
273
|
"noresults": "Ingen informasjon for valgt punkt",
|
|
272
274
|
"querying": "Søker...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Objektinformasjon"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Skriv ut tegnforklaring",
|
|
331
334
|
"separator": "Separator",
|
|
332
335
|
"separatortooltip": "Legg til separator",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "",
|
|
334
338
|
"visiblefilter": "Filtrer usynlige lag",
|
|
335
339
|
"zoomtolayer": "Zoom til lag"
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": ""
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "",
|
|
462
468
|
"windowtitle": ""
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Zmierzyć linię",
|
|
51
51
|
"MeasurePolygon": "Zmierzyć wielokąt",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "Link",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Brak atrybutów",
|
|
271
273
|
"noresults": "Brak dostępnych danych dla wybranego punktu",
|
|
272
274
|
"querying": "Przetwarzam zapytanie...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Feature Info"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Drukuj legendę",
|
|
331
334
|
"separator": "",
|
|
332
335
|
"separatortooltip": "",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "",
|
|
334
338
|
"visiblefilter": "",
|
|
335
339
|
"zoomtolayer": ""
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": ""
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "",
|
|
462
468
|
"windowtitle": ""
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Medir uma linha",
|
|
51
51
|
"MeasurePolygon": "Medir um polígono",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "Link",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Sem atributos",
|
|
271
273
|
"noresults": "Nenhuma informação disponível para o ponto selecionado",
|
|
272
274
|
"querying": "Consultando...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Informação do recurso"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Legenda da impressão",
|
|
331
334
|
"separator": "Separador",
|
|
332
335
|
"separatortooltip": "Adicionar separador",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "Transparência",
|
|
334
338
|
"visiblefilter": "Filtrar camadas invisíveis",
|
|
335
339
|
"zoomtolayer": "Ampliar a camada"
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": ""
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "Por página",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "Fechar diálogo",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "Largura",
|
|
462
468
|
"windowtitle": "Título da janela"
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Medir Linha",
|
|
51
51
|
"MeasurePolygon": "Medir Polígono",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "Link",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Sem Atributos",
|
|
271
273
|
"noresults": "Nenhuma informação disponível para o ponto selecionado",
|
|
272
274
|
"querying": "A consultar...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Informações do Recurso"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Legenda de Impressão",
|
|
331
334
|
"separator": "Separador",
|
|
332
335
|
"separatortooltip": "Adicionar Separador",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "Transparência",
|
|
334
338
|
"visiblefilter": "Filtrar Camadas Invisíveis",
|
|
335
339
|
"zoomtolayer": "Zoom para a Camada"
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": "Ctrl + clique para selecionar múltiplos resultados"
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "Por página",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "Fechar Diálogo",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "Largura",
|
|
462
468
|
"windowtitle": "Entrada Numérica"
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Măsoară o linie",
|
|
51
51
|
"MeasurePolygon": "Măsoară un poligon",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "Link",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Fără atribute",
|
|
271
273
|
"noresults": "Nu există informații în punctul selectat",
|
|
272
274
|
"querying": "Interogare...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Informații obiect spațial"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Tipărește legenda",
|
|
331
334
|
"separator": "separator",
|
|
332
335
|
"separatortooltip": "Adaugă separator",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "Transparență",
|
|
334
338
|
"visiblefilter": "Filtrează straturile invizibile",
|
|
335
339
|
"zoomtolayer": "Vedeți tot stratul"
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": ""
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "pe pagină",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "Închideți",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "Lățimea",
|
|
462
468
|
"windowtitle": "Valori numerice"
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "измерить линию",
|
|
51
51
|
"MeasurePolygon": "измерить многоугольник",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "гиперссылка",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Аттрибуты отсутствуют",
|
|
271
273
|
"noresults": "Для выбранной точки нет доступной информации",
|
|
272
274
|
"querying": "Выполняется запрос...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Информация об объекте"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Распечатать легенду",
|
|
331
334
|
"separator": "",
|
|
332
335
|
"separatortooltip": "",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "",
|
|
334
338
|
"visiblefilter": "",
|
|
335
339
|
"zoomtolayer": ""
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": ""
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "",
|
|
462
468
|
"windowtitle": ""
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Mäta en linje",
|
|
51
51
|
"MeasurePolygon": "Mäta en polygon",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "Länk",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Inga attribut",
|
|
271
273
|
"noresults": "Ingen information för vald punkt",
|
|
272
274
|
"querying": "Frågar...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Objektinformation"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Skriv ut teckenförklaring",
|
|
331
334
|
"separator": "",
|
|
332
335
|
"separatortooltip": "",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "",
|
|
334
338
|
"visiblefilter": "",
|
|
335
339
|
"zoomtolayer": ""
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": ""
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "",
|
|
462
468
|
"windowtitle": ""
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Çizgi Ölç",
|
|
51
51
|
"MeasurePolygon": "Alan Ölç",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "Portal",
|
|
55
56
|
"PrintScreen3D": "Görüntüyü ver",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "Obje sayısı",
|
|
268
269
|
"layerall": "Tüm katmanlar",
|
|
269
270
|
"link": "Bağlantı",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Öznitelik yok",
|
|
271
273
|
"noresults": "Seçilen nokta için geçerli bilgi yok",
|
|
272
274
|
"querying": "Sorgulanıyor...",
|
|
273
275
|
"reportfail": "Rapor üretilemedi",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Obje Bilgisi"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Yazdırma Lejandı",
|
|
331
334
|
"separator": "Ayırıcı",
|
|
332
335
|
"separatortooltip": "Ayırıcı ekle",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "Şeffaflık",
|
|
334
338
|
"visiblefilter": "Görünmeyen katmanları filtrele",
|
|
335
339
|
"zoomtolayer": "Katman sınırlarına yaklaş"
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": "Ctrl+Click ile aç"
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "sayfa başına",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "Kapat",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "Genişlik",
|
|
462
468
|
"windowtitle": "Sayısal giriş"
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"appmenu.items.MeasureLineString",
|
|
46
46
|
"appmenu.items.MeasurePolygon",
|
|
47
47
|
"appmenu.items.NewsPopup",
|
|
48
|
+
"appmenu.items.ObliqueView",
|
|
48
49
|
"appmenu.items.ObjectList",
|
|
49
50
|
"appmenu.items.Panoramax",
|
|
50
51
|
"appmenu.items.Portal",
|
|
@@ -256,11 +257,13 @@
|
|
|
256
257
|
"identify.featurecount",
|
|
257
258
|
"identify.layerall",
|
|
258
259
|
"identify.link",
|
|
260
|
+
"identify.multiview",
|
|
259
261
|
"identify.noattributes",
|
|
260
262
|
"identify.noresults",
|
|
261
263
|
"identify.querying",
|
|
262
264
|
"identify.reportfail",
|
|
263
265
|
"identify.results",
|
|
266
|
+
"identify.selectforcompare",
|
|
264
267
|
"identify.selectreport",
|
|
265
268
|
"identify.title",
|
|
266
269
|
"imageeditor.confirmclose",
|
|
@@ -305,6 +308,7 @@
|
|
|
305
308
|
"layertree.printlegend",
|
|
306
309
|
"layertree.separator",
|
|
307
310
|
"layertree.separatortooltip",
|
|
311
|
+
"layertree.togglegroup",
|
|
308
312
|
"layertree.transparency",
|
|
309
313
|
"layertree.visiblefilter",
|
|
310
314
|
"layertree.zoomtolayer",
|
|
@@ -390,7 +394,9 @@
|
|
|
390
394
|
"measureComponent.metric",
|
|
391
395
|
"measureComponent.pointLabel",
|
|
392
396
|
"misc.ctrlclickhint",
|
|
397
|
+
"navbar.next",
|
|
393
398
|
"navbar.perpage",
|
|
399
|
+
"navbar.prev",
|
|
394
400
|
"newspopup.dialogclose",
|
|
395
401
|
"newspopup.dontshowagain",
|
|
396
402
|
"newspopup.title",
|
|
@@ -401,6 +407,8 @@
|
|
|
401
407
|
"numericinput.side",
|
|
402
408
|
"numericinput.width",
|
|
403
409
|
"numericinput.windowtitle",
|
|
410
|
+
"obliqueview.nodataset",
|
|
411
|
+
"obliqueview.title",
|
|
404
412
|
"panoramax.notfound",
|
|
405
413
|
"panoramax.title",
|
|
406
414
|
"pickfeature.querying",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"MeasureLineString": "Поміряти відрізок",
|
|
51
51
|
"MeasurePolygon": "Виміряти полігон",
|
|
52
52
|
"NewsPopup": "",
|
|
53
|
+
"ObliqueView": "",
|
|
53
54
|
"Panoramax": "",
|
|
54
55
|
"Portal": "",
|
|
55
56
|
"PrintScreen3D": "",
|
|
@@ -267,11 +268,13 @@
|
|
|
267
268
|
"featurecount": "",
|
|
268
269
|
"layerall": "",
|
|
269
270
|
"link": "Посилання",
|
|
271
|
+
"multiview": "",
|
|
270
272
|
"noattributes": "Атрибути відсутні",
|
|
271
273
|
"noresults": "Для обраної точки інформація відсутня",
|
|
272
274
|
"querying": "Обробка запиту...",
|
|
273
275
|
"reportfail": "",
|
|
274
276
|
"results": "",
|
|
277
|
+
"selectforcompare": "",
|
|
275
278
|
"selectreport": "",
|
|
276
279
|
"title": "Відомості про об’єкт"
|
|
277
280
|
},
|
|
@@ -330,6 +333,7 @@
|
|
|
330
333
|
"printlegend": "Друкувати легенду",
|
|
331
334
|
"separator": "",
|
|
332
335
|
"separatortooltip": "",
|
|
336
|
+
"togglegroup": "",
|
|
333
337
|
"transparency": "",
|
|
334
338
|
"visiblefilter": "",
|
|
335
339
|
"zoomtolayer": ""
|
|
@@ -445,7 +449,9 @@
|
|
|
445
449
|
"ctrlclickhint": ""
|
|
446
450
|
},
|
|
447
451
|
"navbar": {
|
|
448
|
-
"
|
|
452
|
+
"next": "",
|
|
453
|
+
"perpage": "",
|
|
454
|
+
"prev": ""
|
|
449
455
|
},
|
|
450
456
|
"newspopup": {
|
|
451
457
|
"dialogclose": "",
|
|
@@ -461,6 +467,10 @@
|
|
|
461
467
|
"width": "",
|
|
462
468
|
"windowtitle": ""
|
|
463
469
|
},
|
|
470
|
+
"obliqueview": {
|
|
471
|
+
"nodataset": "",
|
|
472
|
+
"title": ""
|
|
473
|
+
},
|
|
464
474
|
"panoramax": {
|
|
465
475
|
"notfound": "",
|
|
466
476
|
"title": ""
|