Open ProBackup-nl opened 6 years ago
Thanks for the suggestion.
why not store/host the custom configuration(s) client side?
Because we want some way to share customized profiles between users. And perhaps that could also generally provide permanent storage of customized profiles (but not sure about that yet).
If not, Local Storage would be a simple alternative. We already use it to remember various application states. But there is no overall concept for an improved profile handling yet.
Hello,
I am interested in the feature described above (==> Because we want some way to share customized profiles between users) I developped a profile which I liked to share with my bike-frends and some bike-associations.
The corresponding issue is #26, planned to be one of the next things to work on.
Hallo Norbert,
Besten Dank für deine Antwort!
Falls diese Entwicklung mit zu hohem Aufwand verbunden wäre, würde mir auch eine einfache Lösung schon weiterhelfen:
Zum Beispiel: In der Lasche „Benutzerdefiniertes Profile“, die Funktion „Hochladen“ so zu erweitern, dass (wie beim „nogo-areas“) auch eine Datei hochgeladen werden kann.
(zur Zeit kenne ich nur die Möglichkeit, ein Custom-Profile mit cut/paste ins Fenster zu laden. Das macht nicht jeder, und ist auf Smartphone kein Kinderspiel)
Meine Hochachtung für die Brouter Entwicklung, die mir einzig bekannte Plattform, wo man selber das Profile anpassen kann.
Auch das Fenster „data“ ist für mich einzig, man kann leicht bei der Planung auf Segment-basis die Eigenschaften des Weges kontrollieren. (ich nutze es jetzt vor jeder Tour ins unbekanntes Terrain)
Mit Mühe schaffen andere Tourplaner nur Statistiken!
Ich war 35 Jahre IT-Experte, Performance-Optimierung und Nicht Funktionale Test: Wenn ich irgendwie helfen kann, bitte melden!
(Wohne 12 Km von Frunkfurt / M)
V.G.
Related to #9, #26 and #97, why not store/host the custom configuration(s) client side?
HTML5 Persistent (Offline) Storage allows 5 MiB by default, and Chrome can be asked to store even larger data.
Write f.e. on KeyUp when editing :
storage.getItem('value')
Read:
sessionStorage.setItem('value', this.value);
A demo: https://html5demos.com/storage/
Localstorage is supported since IE8 and even works on Android and iPhone 2.0+
Note: when there is a locally stored profile, load that custom profile by default.
Purpose: I would use such a feature for profile (a) development, (b) fine-tuning, (c) testing.