Select to view content in your preferred language

Does travel mode Walking have restriction on distance?

224
1
Jump to solution
05-21-2024 05:35 AM
Labels (2)
GKmieliauskas
Esri Regular Contributor

When trying to solve route with travel mode "Walking" sometimes I get error message: "Distance between stops is too large to solve using the walking travel mode". The same routing service from web doesn't throw such error message. Is it native application library restriction? I can't say exactly but restriction distance could be about 50 km.

Environment: .Net8, Esri.ArcGISRuntime.Maui 200.4 

 

0 Kudos
1 Solution

Accepted Solutions
FrankK
by
New Contributor III

Yes, this is a limitation in the ArcGIS Runtime. When using walking mode, the total extent of all stops must be less than 50 miles. This limit exists because walking travel mode performs a non-hierarchical solve, which can be computationally intensive. Therefore, the code restricts the extent to reduce the load. We allow this on the server/pro version because they would be running on desktop/server machines with more resources, unlike the ArcGIS Runtime, which may operate on devices with fewer resources, such as phones.

View solution in original post

0 Kudos
1 Reply
FrankK
by
New Contributor III

Yes, this is a limitation in the ArcGIS Runtime. When using walking mode, the total extent of all stops must be less than 50 miles. This limit exists because walking travel mode performs a non-hierarchical solve, which can be computationally intensive. Therefore, the code restricts the extent to reduce the load. We allow this on the server/pro version because they would be running on desktop/server machines with more resources, unlike the ArcGIS Runtime, which may operate on devices with fewer resources, such as phones.

0 Kudos