[openstreetmap/openstreetmap-website] Add demo links for routing engine directions Fixes #6387 (PR #6693)

Marwin Hochfelsner notifications at github.com
Mon Jan 12 16:22:38 UTC 2026


@hlfan commented on this pull request.

It might be worth looking into the Valhalla API if `car` could replace `auto` as the `vehicleType`, so we don't need an extra demo params object there.

> @@ -80,11 +80,20 @@
             }
           })
         });
+        const demoQuery = new URLSearchParams({ profile: DEMO_PARAMS[modeId] });

```suggestion
        const demoQuery = new URLSearchParams({
          profile: DEMO_PARAMS[modeId],
          wps: points.flatMap(({ lat, lng }) => [lng, lat])
        });
```

> @@ -174,15 +175,23 @@
           // invalidate cache
           cachedHints = [];
         }
-
+        const demoQuery = new URLSearchParams({ srv: DEMO_PARAMS[modeId] });

Could this be done with Array.indexOf?

-- 
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/6693#pullrequestreview-3651613795
You are receiving this because you are subscribed to this thread.

Message ID: <openstreetmap/openstreetmap-website/pull/6693/review/3651613795 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/rails-dev/attachments/20260112/0e3b4241/attachment.htm>


More information about the rails-dev mailing list