From f4e89f1c6fc3975613a739c4621bcdad8f2000ab Mon Sep 17 00:00:00 2001 From: Francia Csaba Date: Thu, 8 Feb 2024 14:59:36 +0100 Subject: [PATCH] add car profile to gh request --- amarillo/plugins/enhancer/services/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amarillo/plugins/enhancer/services/routing.py b/amarillo/plugins/enhancer/services/routing.py index fbf8e02..96f6229 100644 --- a/amarillo/plugins/enhancer/services/routing.py +++ b/amarillo/plugins/enhancer/services/routing.py @@ -43,5 +43,5 @@ class RoutingService(): for point in points: locations += "point={0}%2C{1}&".format(point.y, point.x) - return "{0}/route?{1}instructions={2}&calc_points={3}&points_encoded=false".format( + return "{0}/route?{1}instructions={2}&calc_points={3}&points_encoded=false&profile=car".format( self.gh_service_url, locations, instructions, calc_points)