10 typedef NS_ENUM(NSInteger, AMapDrivingStrategy)
12 AMapDrivingStrategyFastest = 0,
13 AMapDrivingStrategyMinFare = 1,
14 AMapDrivingStrategyShortest = 2,
16 AMapDrivingStrategyNoHighways = 3,
17 AMapDrivingStrategyAvoidCongestion = 4,
19 AMapDrivingStrategyAvoidHighwaysAndFare = 5,
20 AMapDrivingStrategyAvoidHighwaysAndCongestion = 6,
21 AMapDrivingStrategyAvoidFareAndCongestion = 7,
22 AMapDrivingStrategyAvoidHighwaysAndFareAndCongestion = 8
26 typedef NS_ENUM(NSInteger, AMapTransitStrategy)
28 AMapTransitStrategyFastest = 0,
29 AMapTransitStrategyMinFare = 1,
30 AMapTransitStrategyMinTransfer = 2,
31 AMapTransitStrategyMinWalk = 3,
32 AMapTransitStrategyMostComfortable = 4,
33 AMapTransitStrategyAvoidSubway = 5,
37 typedef NS_ENUM(NSInteger, AMapRouteSearchType)
39 AMapRouteSearchTypeDriving = 0,
40 AMapRouteSearchTypeTransit = 1,
41 AMapRouteSearchTypeWalking = 2,