@panoramax/web-viewer 3.0.2-develop-a8ea8e60
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/.dockerignore +6 -0
- package/.gitlab-ci.yml +71 -0
- package/CHANGELOG.md +428 -0
- package/CODE_OF_CONDUCT.md +134 -0
- package/Dockerfile +14 -0
- package/LICENSE +21 -0
- package/README.md +39 -0
- package/build/editor.html +1 -0
- package/build/index.css +36 -0
- package/build/index.css.map +1 -0
- package/build/index.html +1 -0
- package/build/index.js +25 -0
- package/build/index.js.map +1 -0
- package/build/map.html +1 -0
- package/build/viewer.html +1 -0
- package/config/env.js +104 -0
- package/config/getHttpsConfig.js +66 -0
- package/config/getPackageJson.js +25 -0
- package/config/jest/babelTransform.js +29 -0
- package/config/jest/cssTransform.js +14 -0
- package/config/jest/fileTransform.js +40 -0
- package/config/modules.js +134 -0
- package/config/paths.js +72 -0
- package/config/pnpTs.js +35 -0
- package/config/webpack/persistentCache/createEnvironmentHash.js +9 -0
- package/config/webpack.config.js +885 -0
- package/config/webpackDevServer.config.js +127 -0
- package/docs/01_Start.md +149 -0
- package/docs/02_Usage.md +828 -0
- package/docs/03_URL_settings.md +140 -0
- package/docs/04_Advanced_examples.md +214 -0
- package/docs/05_Compatibility.md +85 -0
- package/docs/09_Develop.md +62 -0
- package/docs/90_Releases.md +27 -0
- package/docs/images/class_diagram.drawio +129 -0
- package/docs/images/class_diagram.jpg +0 -0
- package/docs/images/screenshot.jpg +0 -0
- package/mkdocs.yml +45 -0
- package/package.json +254 -0
- package/public/editor.html +54 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +59 -0
- package/public/map.html +53 -0
- package/public/viewer.html +67 -0
- package/scripts/build.js +217 -0
- package/scripts/start.js +176 -0
- package/scripts/test.js +52 -0
- package/src/Editor.css +37 -0
- package/src/Editor.js +359 -0
- package/src/StandaloneMap.js +114 -0
- package/src/Viewer.css +203 -0
- package/src/Viewer.js +1186 -0
- package/src/components/CoreView.css +64 -0
- package/src/components/CoreView.js +159 -0
- package/src/components/Loader.css +56 -0
- package/src/components/Loader.js +111 -0
- package/src/components/Map.css +65 -0
- package/src/components/Map.js +841 -0
- package/src/components/Photo.css +36 -0
- package/src/components/Photo.js +687 -0
- package/src/img/arrow_360.svg +14 -0
- package/src/img/arrow_flat.svg +11 -0
- package/src/img/arrow_triangle.svg +10 -0
- package/src/img/arrow_turn.svg +9 -0
- package/src/img/bg_aerial.jpg +0 -0
- package/src/img/bg_streets.jpg +0 -0
- package/src/img/loader_base.jpg +0 -0
- package/src/img/loader_hd.jpg +0 -0
- package/src/img/logo_dead.svg +91 -0
- package/src/img/marker.svg +17 -0
- package/src/img/marker_blue.svg +20 -0
- package/src/img/switch_big.svg +44 -0
- package/src/img/switch_mini.svg +48 -0
- package/src/index.js +10 -0
- package/src/translations/de.json +163 -0
- package/src/translations/en.json +164 -0
- package/src/translations/eo.json +6 -0
- package/src/translations/es.json +164 -0
- package/src/translations/fi.json +1 -0
- package/src/translations/fr.json +164 -0
- package/src/translations/hu.json +133 -0
- package/src/translations/nl.json +1 -0
- package/src/translations/zh_Hant.json +136 -0
- package/src/utils/API.js +709 -0
- package/src/utils/Exif.js +198 -0
- package/src/utils/I18n.js +75 -0
- package/src/utils/Map.js +382 -0
- package/src/utils/PhotoAdapter.js +45 -0
- package/src/utils/Utils.js +568 -0
- package/src/utils/Widgets.js +477 -0
- package/src/viewer/URLHash.js +334 -0
- package/src/viewer/Widgets.css +711 -0
- package/src/viewer/Widgets.js +1196 -0
- package/tests/Editor.test.js +125 -0
- package/tests/StandaloneMap.test.js +44 -0
- package/tests/Viewer.test.js +363 -0
- package/tests/__snapshots__/Editor.test.js.snap +300 -0
- package/tests/__snapshots__/StandaloneMap.test.js.snap +30 -0
- package/tests/__snapshots__/Viewer.test.js.snap +195 -0
- package/tests/components/CoreView.test.js +91 -0
- package/tests/components/Loader.test.js +38 -0
- package/tests/components/Map.test.js +230 -0
- package/tests/components/Photo.test.js +335 -0
- package/tests/components/__snapshots__/Loader.test.js.snap +15 -0
- package/tests/components/__snapshots__/Map.test.js.snap +767 -0
- package/tests/components/__snapshots__/Photo.test.js.snap +205 -0
- package/tests/data/Map_geocoder_ban.json +36 -0
- package/tests/data/Map_geocoder_nominatim.json +56 -0
- package/tests/data/Viewer_pictures_1.json +148 -0
- package/tests/setupTests.js +5 -0
- package/tests/utils/API.test.js +906 -0
- package/tests/utils/Exif.test.js +124 -0
- package/tests/utils/I18n.test.js +28 -0
- package/tests/utils/Map.test.js +105 -0
- package/tests/utils/Utils.test.js +300 -0
- package/tests/utils/Widgets.test.js +107 -0
- package/tests/utils/__snapshots__/API.test.js.snap +132 -0
- package/tests/utils/__snapshots__/Exif.test.js.snap +43 -0
- package/tests/utils/__snapshots__/Map.test.js.snap +48 -0
- package/tests/utils/__snapshots__/Utils.test.js.snap +41 -0
- package/tests/utils/__snapshots__/Widgets.test.js.snap +44 -0
- package/tests/viewer/URLHash.test.js +537 -0
- package/tests/viewer/Widgets.test.js +127 -0
- package/tests/viewer/__snapshots__/URLHash.test.js.snap +98 -0
- package/tests/viewer/__snapshots__/Widgets.test.js.snap +393 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 64 64"
|
|
4
|
+
width="64" height="64"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
7
|
+
<path
|
|
8
|
+
d="M 27.359486,12.65513 1.4316349,43.49917 c -3.2999082,3.906014 -0.53876046,9.96707 4.6468097,9.96707 H 57.934146 c 5.118225,0 7.946718,-5.993711 4.64681,-9.96707 L 36.653105,12.65513 c -2.424422,-2.8284931 -6.869197,-2.8284931 -9.293619,0 z"
|
|
9
|
+
style="fill: currentColor;fill-opacity:1;stroke-width:0.673451" />
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg viewBox="0 0 64 192" width="64" height="192" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
|
3
|
+
<circle
|
|
4
|
+
cx="32"
|
|
5
|
+
cy="32"
|
|
6
|
+
r="29.897806"
|
|
7
|
+
style="fill: currentColor;fill-opacity:1;stroke:#ffffff;stroke-width:4.20439;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
8
|
+
<path d="m 34.279873,20.262171 6.711442,6.714294 c 0.891465,0.891465 2.339986,0.891465 3.231451,0 0.891466,-0.891465 0.891466,-2.339985 0,-3.23145 -9.662902,-9.665829 -3.794285,-3.794286 -8.180297,-8.180298 -1.071396,-1.074322 -2.525696,-1.677165 -4.039972,-1.677165 -1.517129,0 -2.968576,0.602858 -4.042825,1.677165 l -8.180298,8.180298 c -0.894317,0.891465 -0.894317,2.339986 0,3.23145 0.891466,0.891465 2.339987,0.891465 3.231452,0 l 6.697106,-6.694253 v 27.703943 c 0,0 -0.109706,2.126292 2.285971,2.126292 2.395676,0 2.28597,-2.126292 2.28597,-2.126292 z" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.731429" />
|
|
9
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="48"
|
|
6
|
+
height="48"
|
|
7
|
+
viewBox="0 0 12.7 12.7"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg5"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
13
|
+
id="defs2"><filter
|
|
14
|
+
style="color-interpolation-filters:sRGB;"
|
|
15
|
+
id="filter1345"
|
|
16
|
+
x="-0.2314438"
|
|
17
|
+
y="-0.2314438"
|
|
18
|
+
width="1.4628876"
|
|
19
|
+
height="1.4628876"><feFlood
|
|
20
|
+
flood-opacity="0.498039"
|
|
21
|
+
flood-color="rgb(0,0,0)"
|
|
22
|
+
result="flood"
|
|
23
|
+
id="feFlood1335" /><feComposite
|
|
24
|
+
in="flood"
|
|
25
|
+
in2="SourceGraphic"
|
|
26
|
+
operator="in"
|
|
27
|
+
result="composite1"
|
|
28
|
+
id="feComposite1337" /><feGaussianBlur
|
|
29
|
+
in="composite1"
|
|
30
|
+
stdDeviation="0.5"
|
|
31
|
+
result="blur"
|
|
32
|
+
id="feGaussianBlur1339" /><feOffset
|
|
33
|
+
dx="0"
|
|
34
|
+
dy="0"
|
|
35
|
+
result="offset"
|
|
36
|
+
id="feOffset1341" /><feComposite
|
|
37
|
+
in="SourceGraphic"
|
|
38
|
+
in2="offset"
|
|
39
|
+
operator="over"
|
|
40
|
+
result="composite2"
|
|
41
|
+
id="feComposite1343" /></filter><filter
|
|
42
|
+
style="color-interpolation-filters:sRGB;"
|
|
43
|
+
id="filter1389"
|
|
44
|
+
x="-0.19034556"
|
|
45
|
+
y="-0.19034556"
|
|
46
|
+
width="1.3806911"
|
|
47
|
+
height="1.3806911"><feFlood
|
|
48
|
+
flood-opacity="0.498039"
|
|
49
|
+
flood-color="rgb(0,0,0)"
|
|
50
|
+
result="flood"
|
|
51
|
+
id="feFlood1379" /><feComposite
|
|
52
|
+
in="flood"
|
|
53
|
+
in2="SourceGraphic"
|
|
54
|
+
operator="in"
|
|
55
|
+
result="composite1"
|
|
56
|
+
id="feComposite1381" /><feGaussianBlur
|
|
57
|
+
in="composite1"
|
|
58
|
+
stdDeviation="0.5"
|
|
59
|
+
result="blur"
|
|
60
|
+
id="feGaussianBlur1383" /><feOffset
|
|
61
|
+
dx="0"
|
|
62
|
+
dy="0"
|
|
63
|
+
result="offset"
|
|
64
|
+
id="feOffset1385" /><feComposite
|
|
65
|
+
in="SourceGraphic"
|
|
66
|
+
in2="offset"
|
|
67
|
+
operator="over"
|
|
68
|
+
result="composite2"
|
|
69
|
+
id="feComposite1387" /></filter></defs><g
|
|
70
|
+
id="layer1"><path
|
|
71
|
+
style="fill:#bf674c;fill-opacity:1;stroke:#ffffff;stroke-width:0.661458;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter1389)"
|
|
72
|
+
id="path6342"
|
|
73
|
+
transform="matrix(-0.23019089,-0.85909373,0.85909246,-0.23019564,0.96173083,0.76136943)"
|
|
74
|
+
d="M -1.2578926,1.9117668 A 8.0418425,8.0418425 0 0 1 -9.2997351,9.9536092 V 1.9117668 Z" /><circle
|
|
75
|
+
style="fill:#be621c;fill-opacity:1;stroke:#ffffff;stroke-width:0.88787;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter1345)"
|
|
76
|
+
id="path846"
|
|
77
|
+
cx="7.9277072"
|
|
78
|
+
cy="5.4758525"
|
|
79
|
+
r="3.5514777"
|
|
80
|
+
transform="matrix(0.77024177,0.44469933,-0.44469933,0.77024177,0.96173083,0.76136943)" /><g
|
|
81
|
+
id="g892"
|
|
82
|
+
transform="matrix(1.1784639,0,0,1.1784639,-0.83676862,-1.6599522)"><path
|
|
83
|
+
d="M 3.5996678,9.4106252 H 5.7824803 V 9.8075001 H 3.5996678 Z"
|
|
84
|
+
id="path254"
|
|
85
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583" /><path
|
|
86
|
+
d="M 4.1283053,8.2700064 3.8301199,8.0048939 4.0952324,7.7067085 3.7986345,7.4429189 3.533522,7.7411043 3.2353366,7.4759918 2.971547,7.7725898 3.2697324,8.0377023 3.0046199,8.3358877 3.3012178,8.5996772 3.5663303,8.3014918 3.8645157,8.5666043 Z"
|
|
87
|
+
id="path256"
|
|
88
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583" /><path
|
|
89
|
+
d="M 6.2780449,7.7069731 5.981447,7.4431835 5.7163345,7.7413689 5.4181491,7.4762564 5.1543595,7.7728543 5.4525449,8.0379668 5.1874324,8.3361522 5.4840303,8.5999418 5.7491428,8.3017564 6.0473282,8.5668689 6.3111178,8.270271 6.0129324,8.0051585 Z"
|
|
90
|
+
id="path258"
|
|
91
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583" /></g></g></svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="48"
|
|
4
|
+
height="48"
|
|
5
|
+
viewBox="0 0 48 48"
|
|
6
|
+
version="1.1"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
9
|
+
<path
|
|
10
|
+
d="m 8.0222924,7.8597977 a 22.594107,22.594107 0 0 1 31.9555636,0.0027 L 24.001409,23.838916 Z"
|
|
11
|
+
style="fill:#bf360c;fill-opacity:1;stroke:#ffffff;stroke-width:2.50003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
12
|
+
<circle
|
|
13
|
+
cx="24"
|
|
14
|
+
cy="24"
|
|
15
|
+
r="9.9777565"
|
|
16
|
+
style="fill:#ff6f00;fill-opacity:1;stroke:#ffffff;stroke-width:2.49449;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="48"
|
|
4
|
+
height="48"
|
|
5
|
+
viewBox="0 0 12.7 12.7"
|
|
6
|
+
version="1.1"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
9
|
+
<defs
|
|
10
|
+
id="defs1" />
|
|
11
|
+
<path
|
|
12
|
+
d="M-3.007-.005a5.978 5.978 0 0 1-5.979 5.978V-.005z"
|
|
13
|
+
style="fill:#1a237e;fill-opacity:1;stroke:#fff;stroke-width:0.661458;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
14
|
+
transform="rotate(-135)"/>
|
|
15
|
+
<circle
|
|
16
|
+
cx="6.35"
|
|
17
|
+
cy="6.545"
|
|
18
|
+
r="2.64"
|
|
19
|
+
style="fill:#1e88e5;fill-opacity:1;stroke:#fff;stroke-width:0.660027;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
x="0px"
|
|
5
|
+
y="0px"
|
|
6
|
+
viewBox="0 0 90.455002 90.452003"
|
|
7
|
+
id="svg10"
|
|
8
|
+
width="90.455002"
|
|
9
|
+
height="90.452003"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<path
|
|
15
|
+
d="m 2.512,90.45 h 8.012 12.834 c 0.008,0 0.014,0.002 0.02,0.002 h 15.423 c 0.008,0 0.014,-0.002 0.02,-0.002 h 1.164 c 1.387,0 2.512,-1.125 2.512,-2.512 V 52.813 l 27.52,-27.516 v 19.109 c 0,1.386 1.125,2.512 2.514,2.512 1.387,0 2.512,-1.126 2.512,-2.512 V 19.233 c 0,-1.387 -1.125,-2.514 -2.512,-2.514 H 47.356 c -1.389,0 -2.514,1.127 -2.514,2.514 0,1.387 1.125,2.512 2.514,2.512 H 66.463 L 40.226,47.977 c -0.08,-0.008 -0.16,-0.023 -0.242,-0.023 H 2.512 C 1.125,47.954 0,49.079 0,50.466 v 1.188 15.424 12.854 8.008 c 0,1.385 1.125,2.51 2.512,2.51 z M 5.025,79.93 V 67.077 52.977 H 37.471 V 85.424 H 10.523 5.025 Z"
|
|
16
|
+
id="path1" />
|
|
17
|
+
<path
|
|
18
|
+
d="m 67.078,90.452 c 1.389,0 2.514,-1.125 2.514,-2.514 0,-1.387 -1.125,-2.512 -2.514,-2.512 H 51.655 c -1.387,0 -2.512,1.125 -2.512,2.512 0,1.389 1.125,2.514 2.512,2.514 z"
|
|
19
|
+
id="path2" />
|
|
20
|
+
<path
|
|
21
|
+
d="m 90.455,79.93 c 0,-1.387 -1.125,-2.512 -2.514,-2.512 -1.387,0 -2.512,1.125 -2.512,2.512 v 5.496 h -5.496 c -1.389,0 -2.512,1.125 -2.512,2.512 0,1.389 1.123,2.514 2.512,2.514 h 8.008 c 1.389,0 2.514,-1.125 2.514,-2.514 z"
|
|
22
|
+
id="path3" />
|
|
23
|
+
<path
|
|
24
|
+
d="m 87.942,41.311 c 1.387,0 2.512,-1.127 2.512,-2.514 V 23.373 c 0,-1.387 -1.125,-2.512 -2.512,-2.512 -1.389,0 -2.514,1.125 -2.514,2.512 v 15.424 c 0,1.387 1.125,2.514 2.514,2.514 z"
|
|
25
|
+
id="path4" />
|
|
26
|
+
<path
|
|
27
|
+
d="m 85.428,67.075 c 0,1.387 1.125,2.512 2.514,2.512 1.387,0 2.512,-1.125 2.512,-2.512 V 51.651 c 0,-1.387 -1.125,-2.512 -2.512,-2.512 -1.389,0 -2.514,1.125 -2.514,2.512 z"
|
|
28
|
+
id="path5" />
|
|
29
|
+
<path
|
|
30
|
+
d="m 87.942,0 h -8.008 c -1.389,0 -2.512,1.127 -2.512,2.514 0,1.387 1.123,2.512 2.512,2.512 h 5.494 v 5.496 c 0,1.387 1.125,2.514 2.514,2.514 1.387,0 2.512,-1.127 2.512,-2.514 V 2.514 C 90.453,1.127 89.328,0 87.942,0 Z"
|
|
31
|
+
id="path6" />
|
|
32
|
+
<path
|
|
33
|
+
d="m 23.377,5.024 h 15.422 c 1.389,0 2.514,-1.125 2.514,-2.512 C 41.313,1.125 40.188,0 38.799,0 H 23.377 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.387 1.125,2.512 2.514,2.512 z"
|
|
34
|
+
id="path7" />
|
|
35
|
+
<path
|
|
36
|
+
d="m 51.653,5.024 h 15.424 c 1.389,0 2.514,-1.125 2.514,-2.512 C 69.591,1.125 68.466,0 67.077,0 H 51.653 c -1.387,0 -2.512,1.125 -2.512,2.512 0,1.387 1.125,2.512 2.512,2.512 z"
|
|
37
|
+
id="path8" />
|
|
38
|
+
<path
|
|
39
|
+
d="m 2.512,13.033 c 1.389,0 2.514,-1.125 2.514,-2.514 V 5.024 h 5.498 c 1.387,0 2.512,-1.125 2.512,-2.512 C 13.036,1.125 11.911,0 10.524,0 H 2.512 C 1.125,0 0,1.125 0,2.512 v 8.008 c 0,1.388 1.125,2.513 2.512,2.513 z"
|
|
40
|
+
id="path9" />
|
|
41
|
+
<path
|
|
42
|
+
d="m 2.512,41.311 c 1.389,0 2.514,-1.125 2.514,-2.512 V 23.375 C 5.026,21.988 3.901,20.863 2.512,20.863 1.125,20.863 0,21.988 0,23.375 v 15.424 c 0,1.387 1.125,2.512 2.512,2.512 z"
|
|
43
|
+
id="path10" />
|
|
44
|
+
</svg>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
x="0px"
|
|
5
|
+
y="0px"
|
|
6
|
+
viewBox="0 0 90.169998 90.171997"
|
|
7
|
+
enable-background="new 0 0 91 91"
|
|
8
|
+
id="svg12"
|
|
9
|
+
width="90.169998"
|
|
10
|
+
height="90.171997"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
13
|
+
<defs
|
|
14
|
+
id="defs1" />
|
|
15
|
+
<path
|
|
16
|
+
d="m 45.832,18.039 c -1.388,0 -2.513,1.125 -2.513,2.512 V 45.64 c 0,1.39 1.125,2.515 2.513,2.515 h 25.089 c 1.389,0 2.512,-1.125 2.512,-2.515 0,-1.386 -1.123,-2.511 -2.512,-2.511 H 51.894 L 79.386,15.635 c 0.982,-0.98 0.982,-2.57 0,-3.553 -0.98,-0.98 -2.572,-0.98 -3.553,0 L 48.343,39.576 V 20.551 c 0,-1.387 -1.125,-2.512 -2.511,-2.512 z"
|
|
17
|
+
id="path1" />
|
|
18
|
+
<path
|
|
19
|
+
d="m 2.512,90.171 h 0.002 7.982 12.808 15.372 1.182 c 1.388,0 2.514,-1.125 2.514,-2.514 v -37.35 c 0,-1.387 -1.126,-2.512 -2.514,-2.512 H 2.514 c -1.389,0 -2.513,1.125 -2.513,2.512 v 1.17 C 0.001,51.481 0,51.487 0,51.491 v 15.373 c 0,0.006 0.001,0.01 0.001,0.016 V 79.661 C 0.001,79.665 0,79.671 0,79.675 v 7.982 c 0,1.389 1.124,2.514 2.512,2.514 z M 5.026,52.819 H 37.345 V 85.145 H 23.304 10.497 5.026 Z"
|
|
20
|
+
id="path2" />
|
|
21
|
+
<path
|
|
22
|
+
d="m 51.487,85.145 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.389 1.125,2.514 2.514,2.514 H 66.86 c 1.387,0 2.512,-1.125 2.512,-2.514 0,-1.387 -1.125,-2.512 -2.512,-2.512 z"
|
|
23
|
+
id="path3" />
|
|
24
|
+
<path
|
|
25
|
+
d="m 87.657,77.163 c -1.389,0 -2.514,1.125 -2.514,2.512 v 5.471 h -5.469 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.389 1.125,2.514 2.514,2.514 h 7.983 c 1.387,0 2.512,-1.125 2.512,-2.514 v -7.982 c 0,-1.388 -1.125,-2.513 -2.512,-2.513 z"
|
|
26
|
+
id="path4" />
|
|
27
|
+
<path
|
|
28
|
+
d="m 87.657,48.979 c -1.389,0 -2.514,1.125 -2.514,2.512 v 15.373 c 0,1.387 1.125,2.514 2.514,2.514 1.387,0 2.512,-1.127 2.512,-2.514 V 51.491 c 0,-1.387 -1.125,-2.512 -2.512,-2.512 z"
|
|
29
|
+
id="path5" />
|
|
30
|
+
<path
|
|
31
|
+
d="m 87.657,20.795 c -1.389,0 -2.514,1.125 -2.514,2.512 V 38.68 c 0,1.387 1.125,2.512 2.514,2.512 1.387,0 2.512,-1.125 2.512,-2.512 V 23.307 c 0,-1.387 -1.125,-2.512 -2.512,-2.512 z"
|
|
32
|
+
id="path6" />
|
|
33
|
+
<path
|
|
34
|
+
d="m 87.657,0.002 h -7.982 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.387 1.125,2.512 2.514,2.512 h 5.469 v 5.471 c 0,1.387 1.125,2.512 2.514,2.512 1.387,0 2.512,-1.125 2.512,-2.512 V 2.514 C 90.169,1.127 89.044,0.002 87.657,0.002 Z"
|
|
35
|
+
id="path7" />
|
|
36
|
+
<path
|
|
37
|
+
d="m 38.678,5.024 c 1.389,0 2.513,-1.125 2.513,-2.512 C 41.191,1.125 40.067,0 38.678,0 H 23.305 c -1.387,0 -2.512,1.125 -2.512,2.512 0,1.387 1.125,2.512 2.512,2.512 z"
|
|
38
|
+
id="path8" />
|
|
39
|
+
<path
|
|
40
|
+
d="m 66.86,5.024 c 1.389,0 2.514,-1.125 2.514,-2.512 C 69.374,1.125 68.249,0 66.86,0 H 51.489 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.387 1.125,2.512 2.514,2.512 z"
|
|
41
|
+
id="path9" />
|
|
42
|
+
<path
|
|
43
|
+
d="m 2.512,13.006 c 1.389,0 2.513,-1.125 2.513,-2.512 v -5.47 h 5.468 c 1.389,0 2.513,-1.125 2.513,-2.512 C 13.006,1.125 11.882,0 10.493,0 H 2.513 C 1.125,0 10e-4,1.125 10e-4,2.512 v 7.982 C 0,11.881 1.124,13.006 2.512,13.006 Z"
|
|
44
|
+
id="path10" />
|
|
45
|
+
<path
|
|
46
|
+
d="m 2.512,41.192 c 1.389,0 2.513,-1.125 2.513,-2.512 V 23.307 C 5.025,21.92 3.901,20.795 2.512,20.795 1.124,20.795 0,21.92 0,23.307 V 38.68 c 0,1.387 1.124,2.512 2.512,2.512 z"
|
|
47
|
+
id="path11" />
|
|
48
|
+
</svg>
|
package/src/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import Viewer from "./Viewer";
|
|
2
|
+
import StandaloneMap from "./StandaloneMap";
|
|
3
|
+
import Editor from "./Editor";
|
|
4
|
+
|
|
5
|
+
export {
|
|
6
|
+
Viewer as default, // eslint-disable-line import/no-unused-modules
|
|
7
|
+
Viewer, // eslint-disable-line import/no-unused-modules
|
|
8
|
+
StandaloneMap, // eslint-disable-line import/no-unused-modules
|
|
9
|
+
Editor, // eslint-disable-line import/no-unused-modules
|
|
10
|
+
};
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gvs": {
|
|
3
|
+
"options": "Optionen",
|
|
4
|
+
"filters": "Filter",
|
|
5
|
+
"search": "Suche",
|
|
6
|
+
"layers": "Ebenen",
|
|
7
|
+
"share_links": "Links",
|
|
8
|
+
"share_page": "Link zu dieser Seite",
|
|
9
|
+
"loading_labels_fun": [
|
|
10
|
+
"🦌 Erkennung der \"Reh kreuzt\"-Schilder",
|
|
11
|
+
"🚘 Suche Panoramax-Auto ©",
|
|
12
|
+
"☕ Koffeininjektion",
|
|
13
|
+
"😀 Lächle, du wirst kartografiert!",
|
|
14
|
+
"🐈 Katzenfotos teilen",
|
|
15
|
+
"😴 Reduzieren der Prokrastination",
|
|
16
|
+
"🍺️ Bier brauen",
|
|
17
|
+
"🐧 Quellcode öffnen",
|
|
18
|
+
"🛣️ Indizierung der Autobahnen",
|
|
19
|
+
"🧹 Metadatenreinigung",
|
|
20
|
+
"🚒 Senden der Fotos der Feuerwehren",
|
|
21
|
+
"🚲 Grüne Radwege identifiziert",
|
|
22
|
+
"🚉 Durchgang zum Bahnsteig",
|
|
23
|
+
"🛰️ Suche Satelliten",
|
|
24
|
+
"👥 Personas anlegen",
|
|
25
|
+
"🌭️ Lokalisierung der Currywurst",
|
|
26
|
+
"🧑💻 Debugging des Interfaces",
|
|
27
|
+
"📈 Hochzählen der Statistiken"
|
|
28
|
+
],
|
|
29
|
+
"search_empty": "Keine Ergebnisse gefunden",
|
|
30
|
+
"share": "Teilen",
|
|
31
|
+
"metadata_general_picid": "Bild-Identifier",
|
|
32
|
+
"zoom": "Zoom",
|
|
33
|
+
"zoomOut": "Herauszoomen",
|
|
34
|
+
"zoomIn": "Hereinzoomen",
|
|
35
|
+
"moveUp": "Nach oben",
|
|
36
|
+
"moveDown": "Nach unten",
|
|
37
|
+
"moveRight": "Nach rechts",
|
|
38
|
+
"moveMiddle": "Sicht zentrieren",
|
|
39
|
+
"map_theme_age": "Nach Aufnahmedatum",
|
|
40
|
+
"expand": "Vergrößern",
|
|
41
|
+
"expand_info": "Widget im Vollbild anzeigen",
|
|
42
|
+
"show_psv": "Bildbetrachter anzeigen",
|
|
43
|
+
"show_map": "Karte anzeigen",
|
|
44
|
+
"search_user": "Benutzernamen suchen…",
|
|
45
|
+
"filter_zoom_in": "Hereinzoomen um Filter sichtbar zu machen",
|
|
46
|
+
"picture_flat": "Klassisch",
|
|
47
|
+
"picture_360": "360°",
|
|
48
|
+
"filter_camera_model": "Nach Kameramodell",
|
|
49
|
+
"filter_reset": "Filter löschen",
|
|
50
|
+
"map_background": "Kartenhintergrund",
|
|
51
|
+
"map_background_aerial": "Satelliten",
|
|
52
|
+
"map_background_streets": "Straßen",
|
|
53
|
+
"map_theme": "Karten-Art",
|
|
54
|
+
"metadata_exif_name": "Schlagwort",
|
|
55
|
+
"metadata_exif_value": "Wert",
|
|
56
|
+
"map_theme_age_2": "<2 Jahre",
|
|
57
|
+
"map_theme_age_3": "<1 Jahr",
|
|
58
|
+
"map_theme_type": "Nach Kameratyp",
|
|
59
|
+
"contrast": "Höheren Bildkontrast aktivieren",
|
|
60
|
+
"metadata": "Bildmetadaten",
|
|
61
|
+
"metadata_general_seqid": "Sequenzidentifier",
|
|
62
|
+
"metadata_general_picid_link": "Zur JOSN-Beschreibung des Bildes gehen",
|
|
63
|
+
"loading_labels_serious": [
|
|
64
|
+
"🗺️ Laden der Kartendaten",
|
|
65
|
+
"🖥️ API anfragen",
|
|
66
|
+
"🖼️ Vorschaubilder laden",
|
|
67
|
+
"🔍 EXIF Metadaten analysieren",
|
|
68
|
+
"🏘️ 3D-Rendering",
|
|
69
|
+
"📷 360° Fotos initialisieren",
|
|
70
|
+
"🟠 Farben balancieren"
|
|
71
|
+
],
|
|
72
|
+
"search_address": "Suchen sie eine Adresse, Stadt, …",
|
|
73
|
+
"share_image": "HD Bild",
|
|
74
|
+
"share_rss": "RSS Feed",
|
|
75
|
+
"share_embed": "Auf Webseite einbetten",
|
|
76
|
+
"share_print": "Druck",
|
|
77
|
+
"copy": "Kopieren",
|
|
78
|
+
"copied": "Kopiert",
|
|
79
|
+
"error": "Panoramax ist abgestürzt…",
|
|
80
|
+
"sequence_next": "Nächstes Foto in der Sequenz",
|
|
81
|
+
"sequence_play": "Sequenz abspielen",
|
|
82
|
+
"sequence_pause": "Sequenz pausieren",
|
|
83
|
+
"sequence_prev": "Vorheriges Foto in der Sequenz",
|
|
84
|
+
"sequence_more": "Mehr Abspieloptionen",
|
|
85
|
+
"sequence_speed": "Abspielgeschwindigkeit",
|
|
86
|
+
"legend_license": "Lizenz: {l}",
|
|
87
|
+
"edit_osm": "OSM editieren",
|
|
88
|
+
"id": "iD",
|
|
89
|
+
"josm": "JOSM",
|
|
90
|
+
"josm_live": "Einschalten der automatischen JOSM-Synchronisierung beim Laden eines Bildes",
|
|
91
|
+
"error_psv": "Betrachter für die Photospheres wurde nicht richtig geladen",
|
|
92
|
+
"error_pic": "Gesuchtes Foto wurde nicht gefunden",
|
|
93
|
+
"error_nopic": "Kein Foto verfügbar an dieser Position",
|
|
94
|
+
"error_api": "Foto-Server ist nicht verfügbar",
|
|
95
|
+
"error_josm": "JOSM reagiert nicht, ist es geöffnet und die Remote eingeschaltet?",
|
|
96
|
+
"error_api_compatibility": "Der Foto-Server ist nicht mit dieser Version des Betrachters kompatibel",
|
|
97
|
+
"filter_date": "Nach Datum",
|
|
98
|
+
"filter_user": "Nach Benutzer",
|
|
99
|
+
"filter_picture": "Nach Foto-Art",
|
|
100
|
+
"map_theme_default": "Nach standard",
|
|
101
|
+
"map_theme_age_1": ">2 Jahre",
|
|
102
|
+
"metadata_general_seqid_link": "Zur JSON-Beschreibung der Sequenz gehen",
|
|
103
|
+
"metadata_general_author": "Autor",
|
|
104
|
+
"metadata_general_license": "Lizenz",
|
|
105
|
+
"metadata_general_date": "Aufnahmedatum",
|
|
106
|
+
"metadata_camera": "Kamera",
|
|
107
|
+
"metadata_camera_make": "Hersteller",
|
|
108
|
+
"metadata_camera_model": "Modell",
|
|
109
|
+
"metadata_camera_type": "Typ",
|
|
110
|
+
"metadata_camera_focal_length": "Brennweite",
|
|
111
|
+
"metadata_location": "Ort",
|
|
112
|
+
"metadata_location_longitude": "Längengrad",
|
|
113
|
+
"metadata_location_latitude": "Breitengrad",
|
|
114
|
+
"metadata_location_orientation": "Aufnahmerichtung",
|
|
115
|
+
"metadata_location_precision": "Präzision der Positionierung",
|
|
116
|
+
"metadata_exif": "EXIF / XMP",
|
|
117
|
+
"minimize": "Widget verbergen, sie können es über die Schaltfläche in der linken unteren Ecke wieder einblenden",
|
|
118
|
+
"map_theme_age_4": "< 1 Monat",
|
|
119
|
+
"error_subtitle": "Bitte versuchen sie es später erneut, oder schauen sie in die Web-Browser-Konsole für mehr Details.",
|
|
120
|
+
"moveLeft": "Nach links",
|
|
121
|
+
"share_rss_title": "RSS Feed neuer Sequenzen auf der aktuell sichtbaren Karte",
|
|
122
|
+
"error_webgl": "WebGL wird von diesem Browser nicht unterstützt",
|
|
123
|
+
"metadata_general_license_link": "Zur vollen Lizenzbeschreibung gehen",
|
|
124
|
+
"share_embed_docs": "Mehr über die Einbettungs-Konfiguration lesen",
|
|
125
|
+
"report_nature": {
|
|
126
|
+
"": "Art des Problems auswählen…",
|
|
127
|
+
"inappropriate": "Bild ist unangemessen (irrelevant, Nacktheit, ...)",
|
|
128
|
+
"picture_low_quality": "Bild hat eine sehr schlechte Qualität",
|
|
129
|
+
"blur_missing": "Das Gesicht einer Person oder ein KFZ-Kennzeichen ist sichtbar",
|
|
130
|
+
"blur_excess": "Ein Objekt das nicht unkenntlich gemacht werden muss wurde unkenntlich gemacht",
|
|
131
|
+
"privacy": "Ein privater Pfad oder ein privates Grundstück ist sichtbar",
|
|
132
|
+
"mislocated": "Bild ist falsch auf der Karte verortet",
|
|
133
|
+
"copyright": "Bild verletzt das Urheberrecht",
|
|
134
|
+
"other": "Andere Art von Problem"
|
|
135
|
+
},
|
|
136
|
+
"report_details_placeholder": "Sie können optionale Details über das Problem hinzufügen",
|
|
137
|
+
"report_auth": "Dieser Report wird durch ihren Account \"{a}\" gesendet",
|
|
138
|
+
"report_nature_label": "Art des Problems",
|
|
139
|
+
"report_whole_sequence": "Dies betrifft die gesamte Sequenz",
|
|
140
|
+
"report_details": "Weitere Details",
|
|
141
|
+
"report_email": "Ihre Email",
|
|
142
|
+
"report_email_placeholder": "Optional",
|
|
143
|
+
"report_submit": "Absenden",
|
|
144
|
+
"report_success": "Ihr Report wurde erfolgreich gesendet. Er wird so schnell wie möglich überprüft.",
|
|
145
|
+
"report_failure": "Ein Fehler ist bei der Erstellung des Reports aufgetreten: {e}. Bitte versuchen sie es erneut.",
|
|
146
|
+
"report": "Foto melden"
|
|
147
|
+
},
|
|
148
|
+
"psv": {
|
|
149
|
+
"twoFingers": "Nutzen sie zwei Finger zum navigieren",
|
|
150
|
+
"ctrlZoom": "Nutzen sie Strg+Scrollen um das Bild zu zoomen",
|
|
151
|
+
"loadError": "Das Panorama konnte nicht geladen werden"
|
|
152
|
+
},
|
|
153
|
+
"map": {
|
|
154
|
+
"thumbnail": "Vorschau des marktierten Fotos",
|
|
155
|
+
"no_thumbnail": "Keine Vorschau",
|
|
156
|
+
"not_public": "Nicht öffentlich sichtbar",
|
|
157
|
+
"loading": "Laden…"
|
|
158
|
+
},
|
|
159
|
+
"maplibre": {
|
|
160
|
+
"GeolocateControl.FindMyLocation": "Meinen Standort finden",
|
|
161
|
+
"GeolocateControl.LocationNotAvailable": "Standort nicht verfügbar"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
{
|
|
2
|
+
"psv": {
|
|
3
|
+
"twoFingers": "Use two fingers to navigate",
|
|
4
|
+
"ctrlZoom": "Use ctrl + scroll to zoom the image",
|
|
5
|
+
"loadError": "The panorama can't be loaded"
|
|
6
|
+
},
|
|
7
|
+
"maplibre": {
|
|
8
|
+
"GeolocateControl.FindMyLocation": "Find my location",
|
|
9
|
+
"GeolocateControl.LocationNotAvailable": "Location not available"
|
|
10
|
+
},
|
|
11
|
+
"gvs": {
|
|
12
|
+
"zoom": "Zoom",
|
|
13
|
+
"zoomOut": "Zoom out",
|
|
14
|
+
"zoomIn": "Zoom in",
|
|
15
|
+
"moveUp": "Move up",
|
|
16
|
+
"moveDown": "Move down",
|
|
17
|
+
"moveLeft": "Move left",
|
|
18
|
+
"moveRight": "Move right",
|
|
19
|
+
"moveMiddle": "Center view",
|
|
20
|
+
"expand": "Expand",
|
|
21
|
+
"expand_info": "Make the widget appear in full page",
|
|
22
|
+
"show_psv": "Show the picture viewer",
|
|
23
|
+
"show_map": "Show the map",
|
|
24
|
+
"minimize": "Hide this widget, you can show it again using button in bottom left corner",
|
|
25
|
+
"options": "Options",
|
|
26
|
+
"filters": "Filters",
|
|
27
|
+
"layers": "Layers",
|
|
28
|
+
"search": "Search",
|
|
29
|
+
"search_empty": "No results found",
|
|
30
|
+
"search_address": "Search an address, city…",
|
|
31
|
+
"search_user": "Search a username…",
|
|
32
|
+
"share": "Share",
|
|
33
|
+
"share_links": "Links",
|
|
34
|
+
"share_page": "Link to this page",
|
|
35
|
+
"share_image": "HD Image",
|
|
36
|
+
"share_rss": "RSS feed",
|
|
37
|
+
"share_rss_title": "RSS feed of new sequences on the map visible area",
|
|
38
|
+
"share_embed": "Embed on your website",
|
|
39
|
+
"share_embed_docs": "Read more about embed configuration",
|
|
40
|
+
"share_print": "Print",
|
|
41
|
+
"copy": "Copy",
|
|
42
|
+
"copied": "Copied",
|
|
43
|
+
"error": "We have a problem…",
|
|
44
|
+
"error_click": "Click to continue",
|
|
45
|
+
"error_retry": "Please retry later",
|
|
46
|
+
"sequence_next": "Next picture in sequence",
|
|
47
|
+
"sequence_play": "Play along this sequence",
|
|
48
|
+
"sequence_pause": "Pause sequence",
|
|
49
|
+
"sequence_prev": "Previous picture in sequence",
|
|
50
|
+
"sequence_more": "More play options",
|
|
51
|
+
"sequence_speed": "Player speed",
|
|
52
|
+
"legend_license": "License: {l}",
|
|
53
|
+
"edit_osm": "Edit OSM",
|
|
54
|
+
"id": "iD",
|
|
55
|
+
"josm": "JOSM",
|
|
56
|
+
"josm_live": "Enable JOSM automatic sync on picture loading",
|
|
57
|
+
"loading_labels_serious": [
|
|
58
|
+
"🗺️ Loading map data",
|
|
59
|
+
"🖥️ Querying API",
|
|
60
|
+
"🖼️ Loading thumbnails",
|
|
61
|
+
"🔍 Analyzing EXIF metadata",
|
|
62
|
+
"🏘️ 3D rendering",
|
|
63
|
+
"📷 Initializing 360° pictures",
|
|
64
|
+
"🟠 Colour balancing"
|
|
65
|
+
],
|
|
66
|
+
"loading_labels_fun": [
|
|
67
|
+
"🦌 Deer crossing sign detection",
|
|
68
|
+
"🚘 Searching Panoramax Car ©",
|
|
69
|
+
"☕ Caffeine injection",
|
|
70
|
+
"😀 Smile, you're mapped!",
|
|
71
|
+
"🐈 Sharing cat pictures",
|
|
72
|
+
"😴 Reducing procrastination",
|
|
73
|
+
"🫖 Brewing tea",
|
|
74
|
+
"🐧 Opening source code",
|
|
75
|
+
"🚇 Indexing Underground stations",
|
|
76
|
+
"🧹 Metadata cleanup",
|
|
77
|
+
"🚒 Sending fire station photos",
|
|
78
|
+
"🚲 Greenways update",
|
|
79
|
+
"🚉 Station platform walkthrough",
|
|
80
|
+
"🛰️ Searching satellites",
|
|
81
|
+
"👥 Writing personas",
|
|
82
|
+
"🐟 Locating chip shops",
|
|
83
|
+
"🧑💻 Debugging interface",
|
|
84
|
+
"📈 Incrementing statistics"
|
|
85
|
+
],
|
|
86
|
+
"error_psv": "Photo Sphere Viewer is not loading properly",
|
|
87
|
+
"error_pic": "Wanted picture wasn't found",
|
|
88
|
+
"error_nopic": "No picture available at given position",
|
|
89
|
+
"error_api": "The pictures server is not available",
|
|
90
|
+
"error_webgl": "WebGL is not supported on this browser",
|
|
91
|
+
"error_josm": "JOSM doesn't respond, is it running and is remote enabled?",
|
|
92
|
+
"error_api_compatibility": "The pictures server is not compatible with this viewer version",
|
|
93
|
+
"filter_date": "By date",
|
|
94
|
+
"filter_user": "By user",
|
|
95
|
+
"filter_picture": "By picture type",
|
|
96
|
+
"filter_zoom_in": "Zoom-in for filters to be visible",
|
|
97
|
+
"picture_flat": "Classic",
|
|
98
|
+
"picture_360": "360°",
|
|
99
|
+
"filter_camera_model": "By camera model",
|
|
100
|
+
"filter_reset": "Clear filters",
|
|
101
|
+
"map_background": "Map background",
|
|
102
|
+
"map_background_aerial": "Aerial",
|
|
103
|
+
"map_background_streets": "Streets",
|
|
104
|
+
"map_theme": "Map theme",
|
|
105
|
+
"map_theme_default": "By default",
|
|
106
|
+
"map_theme_age": "By capture date",
|
|
107
|
+
"map_theme_age_1": "> 2 years",
|
|
108
|
+
"map_theme_age_2": "< 2 years",
|
|
109
|
+
"map_theme_age_3": "< 1 year",
|
|
110
|
+
"map_theme_age_4": "< 1 month",
|
|
111
|
+
"map_theme_type": "By camera type",
|
|
112
|
+
"contrast": "Enable higher image contrast",
|
|
113
|
+
"metadata": "Picture metadata",
|
|
114
|
+
"metadata_general_picid": "Picture identifier",
|
|
115
|
+
"metadata_general_seqid": "Sequence identifier",
|
|
116
|
+
"metadata_general_picid_link": "Go to JSON description of the picture",
|
|
117
|
+
"metadata_general_seqid_link": "Go to JSON description of the sequence",
|
|
118
|
+
"metadata_general_author": "Author",
|
|
119
|
+
"metadata_general_license": "License",
|
|
120
|
+
"metadata_general_license_link": "Go to license full description page",
|
|
121
|
+
"metadata_general_date": "Capture date",
|
|
122
|
+
"metadata_camera": "Camera",
|
|
123
|
+
"metadata_camera_make": "Make",
|
|
124
|
+
"metadata_camera_model": "Model",
|
|
125
|
+
"metadata_camera_type": "Type",
|
|
126
|
+
"metadata_camera_focal_length": "Focal length",
|
|
127
|
+
"metadata_location": "Location",
|
|
128
|
+
"metadata_location_longitude": "Longitude",
|
|
129
|
+
"metadata_location_latitude": "Latitude",
|
|
130
|
+
"metadata_location_orientation": "Capture direction",
|
|
131
|
+
"metadata_location_precision": "Positioning precision",
|
|
132
|
+
"metadata_exif": "EXIF / XMP",
|
|
133
|
+
"metadata_exif_name": "Tag",
|
|
134
|
+
"metadata_exif_value": "Value",
|
|
135
|
+
"report": "Report picture",
|
|
136
|
+
"report_auth": "This report will be sent using your account \"{a}\"",
|
|
137
|
+
"report_nature_label": "Nature of the issue",
|
|
138
|
+
"report_nature": {
|
|
139
|
+
"": "Select the nature of issue…",
|
|
140
|
+
"blur_missing": "A person face or car plate is visible",
|
|
141
|
+
"blur_excess": "An object not needing blur is blurred",
|
|
142
|
+
"inappropriate": "Picture is inappropriate (unrelated, nudity…)",
|
|
143
|
+
"privacy": "A private path or property is visible",
|
|
144
|
+
"picture_low_quality": "Picture is of very bad quality",
|
|
145
|
+
"mislocated": "Picture is badly positioned on map",
|
|
146
|
+
"copyright": "Picture infringes copyright",
|
|
147
|
+
"other": "Any other kind of issue"
|
|
148
|
+
},
|
|
149
|
+
"report_whole_sequence": "This concerns the entire sequence",
|
|
150
|
+
"report_details": "Additional details",
|
|
151
|
+
"report_details_placeholder": "Optional, you can add details about the issue and how this is concerning",
|
|
152
|
+
"report_email": "Your email",
|
|
153
|
+
"report_email_placeholder": "Optional",
|
|
154
|
+
"report_submit": "Submit",
|
|
155
|
+
"report_success": "Report has been successfully sent. It will be reviewed as soon as possible.",
|
|
156
|
+
"report_failure": "An error occurred when creating report: {e}. Please try again later."
|
|
157
|
+
},
|
|
158
|
+
"map": {
|
|
159
|
+
"loading": "Loading…",
|
|
160
|
+
"thumbnail": "Thumbnail of hovered picture",
|
|
161
|
+
"no_thumbnail": "No thumbnail",
|
|
162
|
+
"not_public": "Not publicly visible"
|
|
163
|
+
}
|
|
164
|
+
}
|