Made speedtype any generic.

Will use any connection (highway), and return the same speed for all highways.
This commit is contained in:
2023-04-09 18:27:53 +02:00
parent d8f8a41dcc
commit 0f53ae579c
4 changed files with 18 additions and 10 deletions

View File

@ -163,5 +163,5 @@ public class Tag
public enum WayType : byte { NONE, motorway, trunk, primary, secondary, tertiary, unclassified, residential, motorway_link, trunk_link, primary_link, secondary_link, tertiary_link, living_street, service, pedestrian, track, bus_guideway, escape, raceway, road, busway, footway, bridleway, steps, corridor, path, cycleway, construction }
// ReSharper restore InconsistentNaming
public enum SpeedType { pedestrian, car, road }
public enum SpeedType { pedestrian, car, any }
}