We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, loading a route from an ID, in loadRouteFromId does three separate calls from journey.retrieve which is inefficient:
loadRouteFromId
journey.retrieve
https://github.com/cyclestreets/routing-ui/blob/master/js/routing.js#L2203-L2219
This should be replaced with multiplexing support when _settings.multiplexedStrategies is enabled, as in loadRoute:
_settings.multiplexedStrategies
loadRoute
https://github.com/cyclestreets/routing-ui/blob/master/js/routing.js#L2253-L2256
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, loading a route from an ID, in
loadRouteFromId
does three separate calls fromjourney.retrieve
which is inefficient:https://github.com/cyclestreets/routing-ui/blob/master/js/routing.js#L2203-L2219
This should be replaced with multiplexing support when
_settings.multiplexedStrategies
is enabled, as inloadRoute
:https://github.com/cyclestreets/routing-ui/blob/master/js/routing.js#L2253-L2256
The text was updated successfully, but these errors were encountered: