mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-03-15 03:02:11 +00:00
feat: add map module
This commit is contained in:
56
src/assets/custom-ionicons/navigate-straight.svg
Normal file
56
src/assets/custom-ionicons/navigate-straight.svg
Normal file
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
class="ionicon"
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="navigate.svg"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1361"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:zoom="0.4609375"
|
||||
inkscape:cx="200.67797"
|
||||
inkscape:cy="256"
|
||||
inkscape:window-x="423"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6" />
|
||||
<title
|
||||
id="title2">Navigate</title>
|
||||
<path
|
||||
d="m 414.33738,465.28459 a 16,16 0 0 1 -22.9244,-0.29698 L 261.69424,335.26887 a 8,8 0 0 0 -11.31371,0 L 120.56279,465.0866 a 16.31,16.31 0 0 1 -18.48377,3.4224 16,16 0 0 1 -8.103433,-19.99698 L 240.94772,52.426166 a 16,16 0 0 1 29.9884,-0.0212 L 418.01433,448.38475 a 16,16 0 0 1 -3.67695,16.89985 z"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -1,4 +1,12 @@
|
||||
{
|
||||
"app": {
|
||||
"ui": {
|
||||
"CLOSE": "Schließen"
|
||||
},
|
||||
"errors": {
|
||||
"UNKNOWN": "Unbekannter Fehler"
|
||||
}
|
||||
},
|
||||
"data": {
|
||||
"REFRESH_ACTION": "Aktualisieren",
|
||||
"REFRESHING": "Aktualisierung läuft...",
|
||||
@@ -60,8 +68,31 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"news": {
|
||||
"title": "Aktuelles"
|
||||
"map": {
|
||||
"page": {
|
||||
"TITLE": "Karte",
|
||||
"search": {
|
||||
"PLACEHOLDER": "Finde Gebäude, Points of Interest, Mensen und Cafés ..."
|
||||
},
|
||||
"buttons": {
|
||||
"SHOW_LIST": "Liste ansehen",
|
||||
"MORE": "Mehr"
|
||||
},
|
||||
"geolocation": {
|
||||
"TITLE": "Standort",
|
||||
"SUBTITLE": "Standort nicht erreichbar",
|
||||
"NOT_ENABLED": "Standortermittlung auf Deinem Gerät ist nicht aktiviert",
|
||||
"NOT_ALLOWED": "Zugriff auf den Standort für die App nicht zugelassen"
|
||||
}
|
||||
},
|
||||
"modals": {
|
||||
"single": {
|
||||
"TITLE": "Angezeigter Ort"
|
||||
},
|
||||
"list": {
|
||||
"TITLE": "Angezeigte Orte"
|
||||
}
|
||||
}
|
||||
},
|
||||
"menu": {
|
||||
"context": {
|
||||
@@ -81,6 +112,9 @@
|
||||
"settings": "Einstellungen"
|
||||
}
|
||||
},
|
||||
"news": {
|
||||
"title": "Aktuelles"
|
||||
},
|
||||
"search": {
|
||||
"nothing_found": "Keine Ergebnisse"
|
||||
},
|
||||
|
||||
@@ -1,4 +1,12 @@
|
||||
{
|
||||
"app": {
|
||||
"ui": {
|
||||
"CLOSE": "Close"
|
||||
},
|
||||
"errors": {
|
||||
"UNKNOWN": "Unknown problem"
|
||||
}
|
||||
},
|
||||
"data": {
|
||||
"REFRESH_ACTION": "Refresh",
|
||||
"REFRESHING": "Refreshing...",
|
||||
@@ -60,8 +68,31 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"news": {
|
||||
"title": "News"
|
||||
"map": {
|
||||
"page": {
|
||||
"TITLE": "Map",
|
||||
"search": {
|
||||
"PLACEHOLDER": "Find buildings, points of interests, canteens and cafes ..."
|
||||
},
|
||||
"buttons": {
|
||||
"SHOW_LIST": "Show list",
|
||||
"MORE": "More"
|
||||
},
|
||||
"geolocation": {
|
||||
"TITLE": "Location",
|
||||
"SUBTITLE": "Location not available",
|
||||
"NOT_ENABLED": "Location service is not enabled on your device",
|
||||
"NOT_ALLOWED": "The app is not allowed to access your location"
|
||||
}
|
||||
},
|
||||
"modals": {
|
||||
"single": {
|
||||
"TITLE": "Place shown"
|
||||
},
|
||||
"list": {
|
||||
"TITLE": "Places shown"
|
||||
}
|
||||
}
|
||||
},
|
||||
"menu": {
|
||||
"context": {
|
||||
@@ -81,6 +112,9 @@
|
||||
"settings": "settings"
|
||||
}
|
||||
},
|
||||
"news": {
|
||||
"title": "News"
|
||||
},
|
||||
"search": {
|
||||
"nothing_found": "No results"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user