-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Allow sharing of route via url #899
Comments
I think the reason why this currently does not exist is that that would require storing all found connections for an umlimited amount of time. |
With arbitrary URL length, connections could be encoded into the URL itself as JSON? Edit: alternatively, we could use web local storage. Of course this is not cross-device or cross-browser but at least the connection is not completely gone. Additionally, we could have a "save" button that just saves the connection JSON to disk. Then maybe with drag&drop we could get it back to display it. |
An alternative approach could be to recompute the search and show closest marching connections based on the URL. So I see it as a two step thing:
I understand that 2. might be more complex and error prone to implement but at least having searches use a URL would make the use of the webui easier. |
With realtime updates you can have different search results every minute. So at least in those situations, it doesn't help. |
That is true for saving an exact connections but for saving a search in terms of making it easy to find connections from A to B with given filters (instead of needing to redo the search each time) URL parameters would be helpful. |
I guess it would be doable to just transfer to HTTP GET parameters of the |
It would be fantastic to be able to link to searches and exact connections.
This would allow me to directly send and save connection links that i have searched for at an earlier stage.
The text was updated successfully, but these errors were encountered: