高德地图SDK(导航) V11.2.100
Loading...
Searching...
No Matches
AMapNaviCommonObj.h
Go to the documentation of this file.
1//
2// AMapNaviCommonObj.h
3// AMapNaviKit
4//
5// Created by AutoNavi on 14-7-1.
6// Copyright (c) 2014年 Amap. All rights reserved.
7//
8
9#import <UIKit/UIKit.h>
10#import <CoreLocation/CLLocation.h>
11#import <AMapFoundationKit/AMapServices.h>
12
13@class AMapNaviRoute;
14
17extern NSString * const AMapNaviErrorDomain;
18
19typedef NS_ENUM(int, AMapNaviAudioOutputMode)
20{
21 AMapNaviAudioOutputModeNone = 0, //未设置 Not set
22 AMapNaviAudioOutputModeText, //普通播报 Regular broadcasting
23 AMapNaviAudioOutputModeSpecial //特色语音包播报 Featured Voice Package Broadcast
24};
25
34
43
51
60
68
71typedef NS_ENUM(NSInteger, AMapNaviDrivingStrategy)
72{
84
96
107
108};
109
134
137typedef NS_ENUM(NSInteger, AMapNaviIconType)
138{
198};
199
210
220
237
263
280
288
301
310
319
328
337
349
352typedef NS_ENUM(NSInteger, AMapNaviGPSSignalStrength)
353{
354 AMapNaviGPSSignalStrengthUnknow = 0, //0 信号强度未知 Signal strength unknown
355 AMapNaviGPSSignalStrengthStrong = 1, //1 信号强 Strong signal
356 AMapNaviGPSSignalStrengthWeak = 2, //2 信号弱 Weak signal
357 AMapNaviGPSSignalStrengthSmartPos = 3, //3 智能定位 Intelligent positioning since 7.8.0
358};
359
362typedef NS_ENUM(NSInteger, AMapNaviCompositeVCBackwardActionType)
363{
364 AMapNaviCompositeVCBackwardActionTypeDismiss = 0, //0 退出了整个导航组件 Exited the entire navigation component
365 AMapNaviCompositeVCBackwardActionTypeNaviPop = 1, //1 退出了导航组件中的导航界面 Exited the navigation interface within the navigation component
366};
367
387
397
424
438
450
460
470
480
483typedef NS_OPTIONS(NSUInteger, AMapNaviCompositeBroadcastType) {
484 AMapNaviCompositeBroadcastDetailed = 0,
485 AMapNaviCompositeBroadcastConcise = 1,
486 AMapNaviCompositeBroadcastMute = 2,
487};
488
500
509
520
527
528typedef NS_OPTIONS(uint64_t, AMapNaviALCLogLevel) {
529 AMapNaviALCLogLevelDebug = 1ULL << 3,
530 AMapNaviALCLogLevelInfo = 1ULL << 4,
531 AMapNaviALCLogLevelWarning = 1ULL << 5,
532 AMapNaviALCLogLevelError = 1ULL << 6,
533 AMapNaviALCLogLevelFatal = 1ULL << 7,
534 AMapNaviALCLogLevelPerformance = 1ULL << 8,
535 AMapNaviALCLogLevelTracing = 1ULL << 9,
536 AMapNaviALCLogLevelPrismTracing = 1ULL << 10,
537 AMapNaviALCLogLevelHeader = 1ULL << 11,
538 AMapNaviALCLogLevelAll = AMapNaviALCLogLevelDebug
539 | AMapNaviALCLogLevelInfo
540 | AMapNaviALCLogLevelWarning
541 | AMapNaviALCLogLevelError
542 | AMapNaviALCLogLevelFatal
543 | AMapNaviALCLogLevelPerformance
544 | AMapNaviALCLogLevelTracing
545 | AMapNaviALCLogLevelPrismTracing
546 | AMapNaviALCLogLevelHeader,
547};
548
550typedef void (^AMapNaviFullLinkLogBlock)(NSString * _Nullable info);
551
554typedef NS_OPTIONS(NSUInteger, AMapNaviRouteAnnoState) {
555 AMapNaviRouteRouteStateNone = 0 << 0, //为0的时候什么都不显示 When 0, nothing is displayed
556 AMapNaviRouteStartEndViaAnnoState = 1 << 1, //第二位为true的时候显示起终点和途径点 When the second digit is true, display the start, end, and waypoints
557 AMapNaviRouteFootFerryAnnoState = 1 << 2, //第三位为true的时候显示轮渡点 When the third digit is true, display ferry points
558 AMapNaviRouteNotAvoidAndTrafficAnnoState = 1 << 3, //第四位为true的时候显示禁限行和封路 When the fourth digit is true, display traffic restrictions and road closures
559 AMapNaviRouteRealStartVisibleState = 1 << 4, //第五位为true的时候显示起点扎点圆形Icon When the fifth digit is true, display the starting point dot circular icon
560 AMapNaviRouteRealEndVisibleState = 1 << 5, //第六位为true的时候显示终点扎点圆形Icon Display the destination pin circle icon when the sixth digit is true
561 AMapNaviRouteAnnoStateAll = (AMapNaviRouteStartEndViaAnnoState | AMapNaviRouteFootFerryAnnoState | AMapNaviRouteNotAvoidAndTrafficAnnoState | AMapNaviRouteRealStartVisibleState | AMapNaviRouteRealEndVisibleState), //全部显示 Show All
562};
563
564
566typedef NS_OPTIONS(NSUInteger, AMapNaviSlopeType) {
567 AMapNaviSlopeTypeUp = 1 << 0, // 上坡 Uphill
568 AMapNaviSlopeTypeDown = 1 << 1 // 下坡 downhill
569};
570
571//算路调用来源 Route calculation invocation source
576
577
578#pragma mark - LaneInfo Image
579
590FOUNDATION_EXTERN UIImage *CreateLaneInfoImageWithLaneInfo(NSString *laneBackInfo, NSString *laneSelectInfo);
591
609 BOOL avoidCongestion,
610 BOOL avoidHighway,
611 BOOL avoidCost,
612 BOOL prioritiseHighway);
613
614#pragma mark - AMapNaviPoint
615
616@interface AMapNaviPoint : NSObject<NSCopying,NSCoding>
617
620@property (nonatomic, assign) CGFloat latitude;
621
624@property (nonatomic, assign) CGFloat longitude;
625
636+ (AMapNaviPoint *)locationWithLatitude:(CGFloat)lat longitude:(CGFloat)lon;
637
646- (BOOL)isEqualToNaviPoint:(AMapNaviPoint *)aPoint;
647
648@end
649
650#pragma mark - AMapNaviPointBounds
651
652@interface AMapNaviPointBounds : NSObject<NSCopying,NSCoding>
653
655@property (nonatomic, strong) AMapNaviPoint *northEast;
656
658@property (nonatomic, strong) AMapNaviPoint *southWest;
659
670+ (AMapNaviPointBounds *)pointBoundsWithNorthEast:(AMapNaviPoint *)northEast southWest:(AMapNaviPoint *)southWest;
671
672@end
673
674#pragma mark - AMapNaviGuide
675
677@interface AMapNaviGuide : NSObject<NSCopying,NSCoding>
678
680@property (nonatomic, strong) NSString *name;
681
683@property (nonatomic, assign) NSInteger length;
684
686@property (nonatomic, assign) NSInteger time;
687
689@property (nonatomic, assign) AMapNaviIconType iconType;
690
692@property (nonatomic, strong) AMapNaviPoint *coordinate;
693
694@end
695
696#pragma mark - AMapNaviGroupSegment
697
699@interface AMapNaviGroupSegment : NSObject<NSCopying>
700
702@property (nonatomic, strong) NSString *groupName;
703
705@property (nonatomic, assign) NSInteger distance;
706
708@property (nonatomic, assign) NSInteger toll;
709
711@property (nonatomic, assign) NSInteger startSegmentID;
712
714@property (nonatomic, assign) NSInteger segmentCount;
715
717@property (nonatomic, assign) BOOL isArriveWayPoint;
718
719@end
720
721#pragma mark - AMapNaviTrafficStatus
722
724@interface AMapNaviTrafficStatus : NSObject<NSCopying>
725
727@property (nonatomic, assign) AMapNaviRouteStatus status;
728
729/*
730 带有深绿路况新的表达方式的交通状态
731 Traffic status with new expression of dark green road conditions
732 畅通状态: 100--200; 而不在 [110,140)深绿、 [160,190)绿内,则路况状态默认为 “畅通”(绿色)
733 Smooth status: 100--200; If not within [110,140) dark green or [160,190) green, the road condition defaults to "smooth" (green)
734 缓行状态: 200--300; 而不在 [210,290)内, 则路况状态默认为 “缓行”(黄色)
735 Slow traffic status: 200--300; if not within [210, 290), the traffic status defaults to "slow" (yellow)
736 拥堵状态: 300--400; 而不在 [310,340)拥堵、 [360,390)极度拥堵内,则路况状态默认为“拥堵”(红色)
737 Congestion status: 300--400; if not within [310, 340) congestion or [360, 390) severe congestion, the traffic status defaults to 'congested' (red)
738 无交通流: 900--999; 路况全部为“无交通流”
739 No traffic flow: 900--999; all traffic conditions are "no traffic flow"
740 在以上区间之外的,包括0 以及所有其他无效值,均按照“未知”处理。
741 Values outside the above range, including 0 and all other invalid values, will be treated as 'unknown'
742 特别注意:当前接口为收费接口,您如果申请试用或者正式应用都请通过工单系统提交商务合作类工单进行沟通 https://lbs.amap.com/ since 9.6.0
743 Special note: This is a paid API. If you wish to apply for a trial or formal usage, please submit a business cooperation ticket via the ticket system for communication. https://lbs.amap.com/ since 9.6.0
744 */
745@property (nonatomic, assign) NSInteger trafficFineStatus;
746
749@property (nonatomic, assign) NSInteger length;
750
751@end
752
753#pragma mark - AMapNaviIntervalCameraDynamicInfo
754
757@interface AMapNaviIntervalCameraDynamicInfo : NSObject <NSCopying>
758
761@property (nonatomic, assign) NSInteger length;
762
765@property (nonatomic, assign) NSInteger remainDistance;
766
769@property (nonatomic, assign) NSInteger averageSpeed;
770
773@property (nonatomic, assign) NSInteger reasonableSpeedInRemainDist;
774
775@end
776
777#pragma mark - AMapNaviCameraInfo
778
780@interface AMapNaviCameraInfo : NSObject <NSCopying>
781
783@property (nonatomic, assign) AMapNaviCameraType cameraType;
784
787@property (nonatomic, assign) NSInteger cameraSpeed;
788
790@property (nonatomic, strong) AMapNaviPoint *coordinate;
791
794@property (nonatomic, assign) NSInteger distance;
795
798@property (nonatomic, strong) AMapNaviIntervalCameraDynamicInfo *intervalCameraDynamicInfo;
799
800@end
801
802#pragma mark - AMapNaviServiceAreaInfo
803
804
806@interface AMapNaviServiceAreaInfo : NSObject <NSCopying>
807
809@property (nonatomic, copy) NSString *poiId;
810
812@property (nonatomic, assign) NSUInteger remainTime;
813
816@property (nonatomic, assign) NSInteger remainDistance;
817
820@property (nonatomic, assign) NSInteger type;
821
823@property (nonatomic, strong) NSString *name;
824
826@property (nonatomic, strong) AMapNaviPoint *coordinate;
827
830@property (nonatomic, assign) NSUInteger sapaDetail;
831
832@end
833
834#pragma mark - AMapNaviCruiseInfo
835
837@interface AMapNaviCruiseInfo : NSObject
838
840@property (nonatomic, assign) NSInteger cruisingDriveTime;
841
843@property (nonatomic, assign) NSInteger cruisingDriveDistance;
844
845@end
846
847#pragma mark - AMapNaviTrafficFacilityInfo
848
897@interface AMapNaviTrafficFacilityInfo : NSObject
898
900@property (nonatomic, strong) AMapNaviPoint *coordinate;
901
904@property (nonatomic, assign) NSInteger boardcastType;
905
908@property (nonatomic, assign) NSInteger distance;
909
912@property (nonatomic, assign) NSInteger limitSpeed;
913
914@end
915
916#pragma mark - AMapNaviCruiseLinkStatus
917
920@interface AMapNaviCruiseLinkStatus : NSObject
921
924@property (nonatomic, strong) NSArray <AMapNaviPoint *>*shapePoints;
925
928@property (nonatomic, assign) AMapNaviRouteStatus status;
929
930@end
931
932#pragma mark - AMapNaviCruiseCongestionInfo
933
936@interface AMapNaviCruiseCongestionInfo : NSObject
937
940@property (nonatomic, copy) NSString *roadName;
941
944@property (nonatomic, assign) AMapNaviRouteStatus congestionStatus;
945
948@property (nonatomic, assign) NSInteger etaTime;
949
952@property (nonatomic, assign) NSInteger length;
953
956@property (nonatomic, strong) AMapNaviCruiseLinkStatus *pLinkData __attribute__((deprecated("This field has been deprecated, use linkDataArr instead, since 10.1.302")));
957
960@property (nonatomic, assign) NSInteger linkCnt __attribute__((deprecated("This field is deprecated, please use linkDataArr since 10.0.820")));
961
962//拥堵区域的状态描述数组
966@property (nonatomic, strong) NSArray<AMapNaviCruiseLinkStatus*> *linkDataArr ;
967
970@property (nonatomic, assign) NSInteger eventType __attribute__((deprecated("This field is deprecated, since 7.0.0")));
971
974@property (nonatomic, strong) AMapNaviPoint *eventPos __attribute__((deprecated("This field is deprecated, since 7.0.0")));
975
976@end
977
978#pragma mark - AMapNaviRouteLabel
979
982@interface AMapNaviRouteLabel : NSObject <NSCopying>
983
986@property (nonatomic, assign) NSInteger type;
987
990@property (nonatomic, strong) NSString *content;
991
992@end
993
994#pragma mark - AMapNaviRestrictionInfo
995
998@interface AMapNaviRestrictionInfo : NSObject <NSCopying>
999
1002@property (nonatomic, assign) NSInteger titleType;
1003
1006@property (nonatomic, strong) NSString *title;
1007
1010@property (nonatomic, strong) NSString *tips;
1011
1014@property (nonatomic, assign) NSInteger cityCode;
1015
1018@property (nonatomic, strong) NSString *desc __attribute__((deprecated("This field is deprecated, since 6.0.0")));
1019
1022@property (nonatomic, assign) NSInteger type __attribute__((deprecated("This field is deprecated, please use titleType. since 6.0.0"))) ;
1023
1026@property (nonatomic, strong) NSArray <NSNumber *> *ruleIDs;
1027
1028@end
1029
1030#pragma mark - AMapNaviParallelRoadStatus
1031
1034@interface AMapNaviParallelRoadStatus : NSObject
1035
1038@property (nonatomic, assign) AMapNaviParallelRoadStatusFlag flag;
1039
1042@property (nonatomic, assign) AMapNaviElevatedRoadStatusFlag hwFlag;
1043
1046@property (nonatomic, assign) NSInteger status __attribute__((deprecated("This field is deprecated, since 7.0.0")));
1047
1048@end
1049
1050#pragma mark - AMapNaviVehicleInfo
1051
1054@interface AMapNaviVehicleInfo : NSObject <NSCopying,NSCoding>
1055
1058@property (nonatomic, strong) NSString *vehicleId;
1059
1062@property (nonatomic, assign) BOOL isETARestriction;
1063
1066@property (nonatomic, assign) NSInteger type;
1067
1070@property (nonatomic, assign) BOOL isLoadIgnore;
1071
1074@property (nonatomic, assign) NSInteger size;
1075
1078@property (nonatomic, assign) NSInteger axisNums;
1079
1082@property (nonatomic, assign) CGFloat width;
1083
1086@property (nonatomic, assign) CGFloat height;
1087
1090@property (nonatomic, assign) CGFloat length;
1091
1094@property (nonatomic, assign) CGFloat load;
1095
1098@property (nonatomic, assign) CGFloat weight;
1099
1102@property (nonatomic, assign) NSInteger motorcycleCC;
1103
1104@end
1105
1106#pragma mark - AMapNaviNotAvoidFacilityAndForbiddenInfo
1107
1110@interface AMapNaviNotAvoidFacilityAndForbiddenInfo : NSObject <NSCopying,NSCoding>
1111
1114@property (nonatomic, assign) NSInteger type;
1115
1118@property (nonatomic, assign) NSInteger forbiddenType;
1119
1122@property (nonatomic, assign) NSInteger distance;
1123
1126@property (nonatomic, strong) AMapNaviPoint *coordinate;
1127
1128@end
1129
1130#pragma mark - AMapNaviRouteForbiddenInfo
1131
1144@interface AMapNaviRouteForbiddenInfo : NSObject <NSCopying>
1145
1148@property (nonatomic, assign) NSInteger type;
1149
1152@property (nonatomic, strong) NSString *vehicleType;
1153
1156@property (nonatomic, strong) AMapNaviPoint *coordinate;
1157
1160@property (nonatomic, strong) NSString *timeDescription;
1161
1164@property (nonatomic, strong) NSString *roadName;
1165
1166@end
1167
1168#pragma mark - AMapNaviRoadFacilityInfo
1169
1172@interface AMapNaviRoadFacilityInfo : NSObject <NSCopying>
1173
1176@property (nonatomic, assign) AMapNaviRoadFacilityType type;
1177
1180@property (nonatomic, strong) AMapNaviPoint *coordinate;
1181
1184@property (nonatomic, strong) NSString *roadName;
1185
1186@end
1187
1188#pragma mark - AMapNaviRouteNotifyData
1189
1192@interface AMapNaviRouteNotifyData : NSObject <NSCopying>
1193
1196@property (nonatomic, assign) AMapNaviRouteNotifyDataType type;
1197
1200@property (nonatomic, assign) BOOL success;
1201
1204@property (nonatomic, assign) NSInteger distance;
1205
1208@property (nonatomic, strong) AMapNaviPoint *coordinate;
1209
1212@property (nonatomic, copy) NSString *roadName;
1213
1216@property (nonatomic, copy) NSString *reason;
1217
1220@property (nonatomic, copy) NSString *subTitle;
1221
1222@end
1223
1224#pragma mark - AMapNaviCongestionInfo
1225
1228@interface AMapNaviCongestionInfo : NSObject <NSCopying>
1229
1232@property (nonatomic, assign) NSInteger remainDistance;
1233
1236@property (nonatomic, assign) NSInteger remainTime;
1237
1240@property (nonatomic, assign) BOOL inCongestionArea;
1241
1244@property (nonatomic, assign) AMapNaviRouteStatus status;
1245
1248@property (nonatomic, assign) NSInteger beginSegmentIndex;
1249
1252@property (nonatomic, assign) NSInteger beginLinkIndex;
1253
1256@property (nonatomic, assign) NSInteger endSegmentIndex;
1257
1260@property (nonatomic, assign) NSInteger endLinkIndex;
1261
1264@property (nonatomic, assign) NSInteger beginCoorIndex;
1265
1266@end
1267
1268#pragma mark - AMapNaviSuggestChangeMainNaviRouteInfo
1269
1272@interface AMapNaviSuggestChangeMainNaviRouteInfo : NSObject <NSCopying>
1273
1276@property (nonatomic, weak) AMapNaviRoute *backupRoute;
1277
1280@property (nonatomic, assign) NSInteger savingTime;
1281
1284@property (nonatomic, copy) NSString *wayRoadName;
1285
1286@end
1287
1288#pragma mark - AMapNaviRouteIconPoint
1289
1292@interface AMapNaviRouteIconPoint : NSObject <NSCopying>
1293
1296@property (nonatomic, assign) AMapNaviRouteIconPointType type;
1297
1300@property (nonatomic, strong) AMapNaviPoint *point;
1301
1302@end
1303
1304#pragma mark - AMapNaviTrafficIncidentInfo
1305
1308@interface AMapNaviTrafficIncidentInfo : NSObject <NSCopying>
1309
1312@property (nonatomic, strong) NSString *title;
1313
1316@property (nonatomic, strong) AMapNaviPoint *coordinate;
1317
1320@property (nonatomic, assign) NSInteger titleType;
1321
1322@end
1323
1324#pragma mark - AMapNaviPOIInfo
1325
1328@interface AMapNaviPOIInfo : NSObject <NSCopying>
1329
1331@property (nonatomic, copy) NSString *name;
1332
1335@property (nonatomic, copy) NSString *mid;
1336
1339@property (nonatomic, strong) AMapNaviPoint *locPoint;
1340
1343@property (nonatomic, assign) double startAngle;
1344
1345@end
1346
1347#pragma mark - AMapNaviParallelRoadInfo
1348
1351@interface AMapNaviParallelRoadInfo : NSObject
1352
1355@property (nonatomic, assign) NSInteger type;
1356
1357@end
1358
1359#pragma mark - AMapNaviToWayPointInfo
1360
1363@interface AMapNaviToWayPointInfo : NSObject <NSCopying>
1364
1367@property (nonatomic, copy) NSString *mid;
1368
1371@property (nonatomic, strong) AMapNaviPoint *point;
1372
1375@property (nonatomic, assign) NSInteger remainDistance;
1376
1379@property (nonatomic, assign) NSInteger remainTime;
1380
1383@property (nonatomic, assign) NSInteger trafficlightNum;
1384
1385@end
1386
1387
1388#pragma mark - AMapNaviRouteWayPointInfo
1389
1392@interface AMapNaviRouteWayPointInfo : NSObject <NSCopying>
1393
1396@property (nonatomic, copy) NSString *mid;
1397
1400@property (nonatomic, strong) AMapNaviPoint *point;
1401
1404@property (nonatomic, assign) NSUInteger segmentIndexInRoute;
1405
1408@property (nonatomic, assign) NSUInteger pointIndexInRoute;
1409
1410@end
1411
1412
1413#pragma mark - AMapNaviExitBoardInfo
1414
1417@interface AMapNaviExitBoardInfo : NSObject <NSCopying>
1418
1421@property (nonatomic, strong) NSArray <NSString *> *exitNames;
1422
1425@property (nonatomic, strong) NSArray <NSString *> *directionInfos;
1426
1427@end
1428
1429#pragma mark - AMapNaviDriveComfort
1430
1433@interface AMapNaviDriveComfort : NSObject<NSCopying>
1434
1437@property (nonatomic, assign) double statusComfortIndex;
1438
1441@property (nonatomic, assign) double statusStartLatitude;
1442
1445@property (nonatomic, assign) double statusStartLongitude;
1446
1449@property (nonatomic, assign) double statusEndLatitude;
1450
1453@property (nonatomic, assign) double statusEndLongitude;
1454
1457@property (nonatomic, assign) NSInteger statusStartTime;
1458
1461@property (nonatomic, assign) NSInteger statusEndTime;
1462
1463@end
1464
1465#pragma mark - AMapNaviDriveEvent
1466
1469@interface AMapNaviDriveEvent : NSObject<NSCopying>
1470
1473@property (nonatomic, assign) AMapNaviDriveEventType eventType;
1474
1477@property (nonatomic, assign) double eventLevel;
1478
1481@property (nonatomic, assign) double eventLatitude;
1482
1485@property (nonatomic, assign) double eventLongitude;
1486
1489@property (nonatomic, assign) NSInteger eventStartTime;
1490
1493@property (nonatomic, assign) NSInteger eventEndTime;
1494
1497@property (nonatomic, assign) double eventMaxSpeed;
1498
1501@property (nonatomic, assign) double eventMaxAcc;
1502
1503@end
1504
1505#pragma mark - AMapNaviPolylineGreyColor
1506
1509@interface AMapNaviPolylineGreyColor : NSObject <NSCopying>
1510
1513@property (nonatomic, strong) UIColor *fillColor;
1514
1517@property (nonatomic, strong) UIColor *borderColor;
1518
1521@property (nonatomic, strong) UIColor *arrowColor;
1522
1525@property (nonatomic, strong) UIColor *fillColorNight;
1526
1529@property (nonatomic, strong) UIColor *borderColorNight;
1530
1533@property (nonatomic, strong) UIColor *arrowColorNight;
1534
1535@end
1536
1537#pragma mark - AMapNaviPolylineTrafficStatusColor
1538
1541@interface AMapNaviPolylineTrafficStatusColor : NSObject <NSCopying>
1542
1545@property (nonatomic, assign) AMapNaviRouteStatus status;
1546
1549@property (nonatomic, strong) UIColor *fillColorHighlight;
1550
1553@property (nonatomic, strong) UIColor *borderColorHighlight;
1554
1557@property (nonatomic, strong) UIColor *fillColor;
1558
1561@property (nonatomic, strong) UIColor *borderColor;
1562
1565@property (nonatomic, strong) UIColor *fillColorHighlightNight;
1566
1569@property (nonatomic, strong) UIColor *borderColorHighlightNight;
1570
1573@property (nonatomic, strong) UIColor *fillColorNight;
1574
1577@property (nonatomic, strong) UIColor *borderColorNight;
1578
1579@end
1580
1581#pragma mark - AMapNaviPCMTask
1582
1585@interface AMapNaviPCMTask : NSObject <NSCopying>
1586
1589@property (nonatomic, assign) NSInteger taskId;
1590
1593@property (nonatomic, assign) NSInteger priority;
1594
1597@property (nonatomic, assign) AMapNaviSoundType soundType;
1598
1599@end
1600
1601#pragma mark - AMapNaviTTSDropInfo
1602
1611
1614@interface AMapNaviTTSDropInfo : NSObject <NSCopying>
1615
1618@property (nonatomic, assign) NSInteger taskId;
1619
1622@property (nonatomic, assign) NSInteger priority;
1623
1626@property (nonatomic, assign) AMapNaviSoundType soundType;
1627
1630@property (nonatomic, copy) NSString * _Nonnull text;
1631
1634@property (nonatomic, assign) AMapNaviTTSDropReason reason;
1635
1636- (instancetype _Nonnull)initWithTaskId:(NSInteger)taskId priority:(NSInteger)priority soundType:(NSInteger)soundType text:(NSString * _Nullable)text reason:(AMapNaviTTSDropReason)reason;
1637
1638@end
1639
1640#pragma mark - AMapNaviTMCStatusColor
1641
1644@interface AMapNaviTMCStatusColor : NSObject <NSCopying>
1645
1648@property (nonatomic, assign) AMapNaviRouteStatus status;
1649
1652@property (nonatomic, strong) UIColor *color;
1653
1654@end
1655
1656
1659typedef NS_ENUM(NSInteger, AMapNaviTrafficEventType) {
1660 AMapNaviTrafficEventTypeAccident = 1, // 事故 Accident
1661 AMapNaviTrafficEventTypeConstruction = 2, // 施工 Construction
1662 AMapNaviTrafficEventTypeClose = 3, // 封路 Road Closure
1663 AMapNaviTrafficEventTypeControl = 4, // 管制 Control
1664};
1665
1667@interface AMapNaviTrafficEventItem : NSObject<NSCopying>
1668
1670@property (nonatomic, assign) AMapNaviTrafficEventType type;
1671
1673@property (nonatomic, assign) CLLocationCoordinate2D coord;
1674
1676@property (nonatomic, assign) NSInteger startSegmentIndex;
1677
1679@property (nonatomic, assign) NSInteger startLinkIndex;
1680
1682@property (nonatomic, assign) NSInteger endSegmentIndex;
1683
1685@property (nonatomic, assign) NSInteger endLinkIndex;
1686
1688@property (nonatomic, assign) NSInteger label;
1689
1691@property (nonatomic, copy) NSString *labelDesc;
1692@end
1693
1695@interface AMapNaviRouteTrafficEventInfo : NSObject<NSCopying>
1696
1698@property (nonatomic, strong) NSArray<AMapNaviTrafficEventItem *> *infoList;
1700@property (nonatomic, assign) NSUInteger routeID;
1701
1702@end
1703
1705@interface AMapNaviRoadShadePathInfo : NSObject<NSCopying>
1706
1708@property (nonatomic, assign) long long pathId;
1709
1711@property (nonatomic, assign) double shadePercent;
1712
1714@property (nonatomic, nullable, copy) NSString *treeShadePosition;
1715
1717@property (nonatomic, nullable, copy) NSString *buildingShadePosition;
1718
1719@end
1720
1722@interface AMapNaviRoadShadeResult : NSObject<NSCopying>
1723
1725@property (nonatomic, assign) BOOL success;
1726
1728@property (nonatomic, assign) NSInteger errorCode;
1729
1731@property (nonatomic, nullable, copy) NSArray<AMapNaviRoadShadePathInfo *> *pathInfos;
1732
1733@end
1734
1737@interface AMapNaviInputTip : NSObject<NSCopying>
1738
1740@property (nonatomic, copy) NSString *mid;
1741
1743@property (nonatomic, copy) NSString *name;
1744
1746@property (nonatomic, copy) AMapNaviPoint *location;
1747
1749@property (nonatomic, nullable, copy) NSString *district;
1750
1752@property (nonatomic, nullable, copy) NSString *adcode;
1753
1755@property (nonatomic, nullable, copy) NSString *address;
1756
1759@property (nonatomic, nullable, copy) NSString *typecode;
1760
1761@end
1762
1763
1764NS_ASSUME_NONNULL_BEGIN
1765
1767@interface AMapNaviPOI : NSObject <NSCopying>
1768
1769@property (nonatomic, copy) NSString *poiId;
1770
1771@property (nonatomic, copy) NSString *name;
1772
1773@property (nonatomic, strong) AMapNaviPoint *point;
1774
1775@property (nonatomic, nullable, copy) NSString *telephone;
1776
1777
1788@property (nonatomic, copy) NSString *typeCode;
1789
1790
1791@end
1792
1793
1795@interface AMapNaviChargingInfo : NSObject <NSCopying>
1796
1798@property (nonatomic, assign) NSInteger numFast;
1799
1801@property (nonatomic, assign) NSInteger numSlow;
1802
1804@property (nonatomic, assign) NSInteger numSuper;
1805
1807@property (nonatomic, nullable, copy) NSString *openTagForward;
1808
1810@property (nonatomic, nullable, copy) NSString *name;
1811
1813@property (nonatomic, nullable, copy) NSString *priceChargingDesc;
1814
1816@property (nonatomic, nullable, copy) NSString *equipmentInfoDesc;
1817
1818
1819@end
1820
1821
1822
1825
1826// POI 描述: 例如:汽车服务;充电站;充电站 POI description: e.g. car service; charging station; charging station
1827@property (nonatomic, copy) NSString *childType;
1828
1829@end
1830
1831
1835
1836
1839@property (nonatomic, assign) NSInteger distance;
1840
1843@property (nonatomic, assign) NSInteger time;
1844
1847@property (nonatomic, copy) NSString *shape;
1848
1851@property (nonatomic, assign) NSUInteger sapaDetail;
1852
1854@property (nonatomic, copy) NSString *address;
1855
1857@property (nonatomic, copy) NSArray<AMapNaviServiceAreaChildrenPOI *> *serviceChildren;
1858
1860@property (nonatomic, copy) NSString *normalTimeText;
1861
1863@property (nonatomic, nullable, copy) NSString *priceParkingStd;
1864
1866@property (nonatomic, copy) NSArray<AMapNaviChargingInfo *> *chargingInfos;
1867
1868@end
1869
1870
1871@interface AMapNaviSlopeInfo : NSObject <NSCopying>
1872
1875@property (nonatomic, assign) AMapNaviSlopeType slopeType;
1876
1879@property (nonatomic, copy) NSString *points;
1880
1883@property (nonatomic, assign) NSInteger slopeAngle;
1884
1886@property (nonatomic, assign) NSInteger slopeLength;
1887
1889@property (nonatomic, assign) NSInteger slopeHeight;
1890
1891@end
1892
1893
1894@interface AMapNaviCalRouteOptions : NSObject <NSCopying>
1895
1898@property (nonatomic, assign) AMapNaviDrivingStrategy strategy;
1899
1902@property (nonatomic, assign) AMapNaviInvokerType invokerType;
1903
1907@property (nonatomic, assign) BOOL intelligentSorting;
1908
1909@end
1910
1911
1912
1913NS_ASSUME_NONNULL_END
1914
1915#pragma mark - AMapNaviAppLangOptions
1916
1919@interface AMapNaviAppLangOptions : NSObject <NSCopying>
1920
1921// 注意:在使用导航功能前,请通过 [AMapServices sharedServices].regionLanguageType 来设置语言类型 (since 11.2.000)
1924// @property (nonatomic, assign) AMapRegionLanguageType appLangType;
1925
1928@property (nonatomic, strong, nullable) NSString *voicePath;
1929
1932@property (nonatomic, assign) NSInteger speakerId;
1933
1935@property (nonatomic, assign) AMapNaviAudioOutputMode audioOutputMode;
1936
1937@end
AMapNaviParallelRoadStatusFlag
Definition AMapNaviCommonObj.h:314
@ AMapNaviParallelRoadStatusFlagMain
2 可切换到主路 Can switch to main road
Definition AMapNaviCommonObj.h:317
@ AMapNaviParallelRoadStatusFlagAssist
1 可切换到辅路 Can switch to auxiliary road
Definition AMapNaviCommonObj.h:316
@ AMapNaviParallelRoadStatusFlagNone
0 无主辅路可切换 No main or auxiliary road to switch
Definition AMapNaviCommonObj.h:315
AMapNaviCameraType
Definition AMapNaviCommonObj.h:267
@ AMapNaviCameraTypeBicycleLane
6 非机动车道摄像头 Non-motor vehicle lane cameras
Definition AMapNaviCommonObj.h:274
@ AMapNaviCameraTypeEmergencyLane
5 应急车道摄像头 Emergency lane cameras
Definition AMapNaviCommonObj.h:273
@ AMapNaviCameraTypeBreakRule
3 违章拍照 Illegal parking cameras
Definition AMapNaviCommonObj.h:271
@ AMapNaviCameraTypeTrafficLight
2 闯红灯拍照 Red light cameras
Definition AMapNaviCommonObj.h:270
@ AMapNaviCameraTypeIntervalVelocityStart
8 区间测速起始 Start of section speed measurement
Definition AMapNaviCommonObj.h:275
@ AMapNaviCameraTypeSurveillance
1 监控摄像 Surveillance cameras
Definition AMapNaviCommonObj.h:269
@ AMapNaviCameraTypeSpeed
0 测速摄像 Speed cameras
Definition AMapNaviCommonObj.h:268
@ AMapNaviCameraTypeFlowSpeed
10 流动测速电子眼 Mobile speed camera
Definition AMapNaviCommonObj.h:277
@ AMapNaviCameraTypeIntervalVelocityEnd
9 区间测速终止 End of section speed measurement
Definition AMapNaviCommonObj.h:276
@ AMapNaviCameraTypeBusway
4 公交专用道摄像头 Bus lane cameras
Definition AMapNaviCommonObj.h:272
@ AMapNaviCameraTypeETC
11 ETC计费拍照 ETC toll photo capture since 9.0.0 新增
Definition AMapNaviCommonObj.h:278
AMapNaviOwnershipType
Definition AMapNaviCommonObj.h:502
@ AMapNaviOwnershipUndergroundParkRoad
地下停车场道路 Underground parking lot roads
Definition AMapNaviCommonObj.h:506
@ AMapNaviOwnershipPrivateRoad
私有道路 Private roads
Definition AMapNaviCommonObj.h:505
@ AMapNaviOwnershipPublicRoad
公共道路 Public roads
Definition AMapNaviCommonObj.h:503
@ AMapNaviOwnershipInternalRoad
内部道路 Internal roads
Definition AMapNaviCommonObj.h:504
@ AMapNaviOwnership3DParkRoad
立体停车场道路 Multi-story parking lot roads
Definition AMapNaviCommonObj.h:507
AMapNaviBroadcastMode
Definition AMapNaviCommonObj.h:284
@ AMapNaviBroadcastModeDetailed
2 新手详细播报 Detailed announcement for beginners
Definition AMapNaviCommonObj.h:286
@ AMapNaviBroadcastModeConcise
1 经典简洁播报(建议老司机使用) Classic concise announcement (recommended for experienced drivers)
Definition AMapNaviCommonObj.h:285
AMapNaviTrafficEventType
Definition AMapNaviCommonObj.h:1659
@ AMapNaviTrafficEventTypeClose
Definition AMapNaviCommonObj.h:1662
@ AMapNaviTrafficEventTypeControl
Definition AMapNaviCommonObj.h:1663
@ AMapNaviTrafficEventTypeAccident
Definition AMapNaviCommonObj.h:1660
@ AMapNaviTrafficEventTypeConstruction
Definition AMapNaviCommonObj.h:1661
AMapNaviGPSSignalStrength
Definition AMapNaviCommonObj.h:353
@ AMapNaviGPSSignalStrengthStrong
Definition AMapNaviCommonObj.h:355
@ AMapNaviGPSSignalStrengthUnknow
Definition AMapNaviCommonObj.h:354
@ AMapNaviGPSSignalStrengthSmartPos
Definition AMapNaviCommonObj.h:357
@ AMapNaviGPSSignalStrengthWeak
Definition AMapNaviCommonObj.h:356
AMapNaviIconType
Definition AMapNaviCommonObj.h:138
@ AMapNaviIconTypeSubway
47 通过地铁图标 Via subway icon
Definition AMapNaviCommonObj.h:186
@ AMapNaviIconTypeUnderpass
31 通过地下通道图标 Via underground passage icon
Definition AMapNaviCommonObj.h:170
@ AMapNaviIconTypeLowCross
54 非导航段通过普通路口图标 Non-navigation segment passing through regular intersection icon
Definition AMapNaviCommonObj.h:193
@ AMapNaviIconTypeEntryRingLeft
21 标准小环岛 绕环岛左转,右侧通行地区的逆时针环岛 Standard small roundabout, turn left around the roundabout,...
Definition AMapNaviCommonObj.h:160
@ AMapNaviIconTypeMergeLeft
65 靠左图标 Keep left icon since 9.0.0
Definition AMapNaviCommonObj.h:196
@ AMapNaviIconTypeLift
35 通过直梯图标 Via elevator icon
Definition AMapNaviCommonObj.h:174
@ AMapNaviIconTypeRightBack
7 右后方图标 Rear right icon
Definition AMapNaviCommonObj.h:146
@ AMapNaviIconTypeNone
0 无定义 Undefined
Definition AMapNaviCommonObj.h:139
@ AMapNaviIconTypeLeaveOverpass
56 下天桥图标 Leave pedestrian overpass icon
Definition AMapNaviCommonObj.h:194
@ AMapNaviIconTypeCrosswalk
29 通过人行横道图标 Via pedestrian crossing icon
Definition AMapNaviCommonObj.h:168
@ AMapNaviIconTypeBridge
45 通过桥图标 Via bridge icon
Definition AMapNaviCommonObj.h:184
@ AMapNaviIconTypeLowTrafficCross
53 非导航段通过红绿灯路口图标 Non-navigation segment passing through traffic light intersection icon
Definition AMapNaviCommonObj.h:192
@ AMapNaviIconTypeSightseeingbus
41 通过观光车路线图标 Via sightseeing vehicle route icon
Definition AMapNaviCommonObj.h:180
@ AMapNaviIconTypeByElevator
50 电梯换层图标 Elevator transfer icon
Definition AMapNaviCommonObj.h:189
@ AMapNaviIconTypeLeaveUnderground
57 出地下通道图标 Leave underground passage icon
Definition AMapNaviCommonObj.h:195
@ AMapNaviIconTypeArrivedServiceArea
13 到达服务区图标 Arrive at service area icon
Definition AMapNaviCommonObj.h:152
@ AMapNaviIconTypeCruises
40 通过游船路线图标 Via boat route icon
Definition AMapNaviCommonObj.h:179
@ AMapNaviIconTypeEnterRoundabout
11 进入环岛图标 Enter roundabout icon
Definition AMapNaviCommonObj.h:150
@ AMapNaviIconTypeEntryLeftRingUTurn
28 标准小环岛 绕环岛调头,左侧通行地区的顺时针环岛 Standard small roundabout, make a U-turn around the roundabout,...
Definition AMapNaviCommonObj.h:167
@ AMapNaviIconTypeArrivedTunnel
16 进入隧道图标 Enter tunnel icon
Definition AMapNaviCommonObj.h:155
@ AMapNaviIconTypeStraight
9 直行图标 Straight icon
Definition AMapNaviCommonObj.h:148
@ AMapNaviIconTypeOverheadPassage
37 通过空中通道图标 Via aerial passage icon
Definition AMapNaviCommonObj.h:176
@ AMapNaviIconTypeArrivedTollGate
14 到达收费站图标 Arrive at toll station icon
Definition AMapNaviCommonObj.h:153
@ AMapNaviIconTypeSlope
44 通过斜坡图标 Via ramp icon
Definition AMapNaviCommonObj.h:183
@ AMapNaviIconTypeLeaveLeftRing
18 驶出环岛图标,左侧通行地区的顺时针环岛 Exit roundabout icon, clockwise roundabout in left-hand traffic areas
Definition AMapNaviCommonObj.h:157
@ AMapNaviIconTypePassage
38 通过建筑物穿越通道图标 Via building passage icon
Definition AMapNaviCommonObj.h:177
@ AMapNaviIconTypeEntryLeftRingLeft
25 标准小环岛 绕环岛左转,左侧通行地区的顺时针环岛 Standard small roundabout, turn left around the roundabout,...
Definition AMapNaviCommonObj.h:164
@ AMapNaviIconTypeLeft
2 左转图标 Left turn icon
Definition AMapNaviCommonObj.h:141
@ AMapNaviIconTypeArrivedWayPoint
10 到达途经点图标 Waypoint arrival icon
Definition AMapNaviCommonObj.h:149
@ AMapNaviIconTypeUTurnRight
19 右转掉头图标,左侧通行地区的掉头 U-turn icon for right turn, U-turn in left-hand traffic areas
Definition AMapNaviCommonObj.h:158
@ AMapNaviIconTypeEnterBuilding
48 进入建筑物图标 Enter building icon
Definition AMapNaviCommonObj.h:187
@ AMapNaviIconTypeStaircase
34 通过扶梯图标 Via escalator icon
Definition AMapNaviCommonObj.h:173
@ AMapNaviIconTypeSpecialContinue
20 顺行图标(和直行有区别,顺行图标带有虚线) Through icon (different from going straight, the through icon has dashed lin...
Definition AMapNaviCommonObj.h:159
@ AMapNaviIconTypeRightFront
5 右前方图标 Front right icon
Definition AMapNaviCommonObj.h:144
@ AMapNaviIconTypeLeftFront
4 左前方图标 Front left icon
Definition AMapNaviCommonObj.h:143
@ AMapNaviIconTypeEscalator
52 扶梯换层图标 Escalator level change icon
Definition AMapNaviCommonObj.h:191
@ AMapNaviIconTypeCableway
36 通过索道图标 Via cable car icon
Definition AMapNaviCommonObj.h:175
@ AMapNaviIconTypeSlip
42 通过滑道图标 Via slide icon
Definition AMapNaviCommonObj.h:181
@ AMapNaviIconTypeDefault
1 车图标 Car icon
Definition AMapNaviCommonObj.h:140
@ AMapNaviIconTypeStair
43 通过阶梯图标 Via staircase icon
Definition AMapNaviCommonObj.h:182
@ AMapNaviIconTypeFerryboat
46 通过渡轮图标 Via ferry icon
Definition AMapNaviCommonObj.h:185
@ AMapNaviIconTypeEntryRingContinue
23 标准小环岛 绕环岛直行,右侧通行地区的逆时针环岛 Standard small roundabout, go straight around the roundabout,...
Definition AMapNaviCommonObj.h:162
@ AMapNaviIconTypeFlyover
30 通过过街天桥图标 Via pedestrian overpass icon
Definition AMapNaviCommonObj.h:169
@ AMapNaviIconTypeLeftAndAround
8 左转掉头图标 U-turn left icon
Definition AMapNaviCommonObj.h:147
@ AMapNaviIconTypeSquare
32 通过广场图标 Via square icon
Definition AMapNaviCommonObj.h:171
@ AMapNaviIconTypeEntryRingRight
22 标准小环岛 绕环岛右转,右侧通行地区的逆时针环岛 Standard small roundabout, turn right around the roundabout,...
Definition AMapNaviCommonObj.h:161
@ AMapNaviIconTypeEntryLeftRingContinue
27 标准小环岛 绕环岛直行,左侧通行地区的顺时针环岛 Standard small roundabout, go straight around the roundabout,...
Definition AMapNaviCommonObj.h:166
@ AMapNaviIconTypeWalks
39 通过行人道路图标 Via pedestrian path icon
Definition AMapNaviCommonObj.h:178
@ AMapNaviIconTypeEntryLeftRingRight
26 标准小环岛 绕环岛右转,左侧通行地区的顺时针环岛 Standard small roundabout, turn right around the roundabout,...
Definition AMapNaviCommonObj.h:165
@ AMapNaviIconTypeMergeRight
66 靠右图标 Keep right icon since 9.0.0
Definition AMapNaviCommonObj.h:197
@ AMapNaviIconTypeEntryLeftRing
17 进入环岛图标,左侧通行地区的顺时针环岛 Enter roundabout icon, clockwise roundabout in left-hand traffic areas
Definition AMapNaviCommonObj.h:156
@ AMapNaviIconTypeRight
3 右转图标 Right turn icon
Definition AMapNaviCommonObj.h:142
@ AMapNaviIconTypeOutRoundabout
12 驶出环岛图标 Exit roundabout icon
Definition AMapNaviCommonObj.h:151
@ AMapNaviIconTypeEntryRingUTurn
24 标准小环岛 绕环岛调头,右侧通行地区的逆时针环岛 Standard small roundabout, make a U-turn around the roundabout,...
Definition AMapNaviCommonObj.h:163
@ AMapNaviIconTypeByStair
51 楼梯换层图标 Stair transfer icon
Definition AMapNaviCommonObj.h:190
@ AMapNaviIconTypeLeaveBuilding
49 离开建筑物图标 Exit building icon
Definition AMapNaviCommonObj.h:188
@ AMapNaviIconTypePark
33 通过公园图标 Via park icon
Definition AMapNaviCommonObj.h:172
@ AMapNaviIconTypeLeftBack
6 左后方图标 Rear left icon
Definition AMapNaviCommonObj.h:145
@ AMapNaviIconTypeArrivedDestination
15 到达目的地图标 Arrive at destination icon
Definition AMapNaviCommonObj.h:154
AMapNaviRouteIconPointType
Definition AMapNaviCommonObj.h:454
@ AMapNaviRouteIconPointTypeVehicleFerry
汽车轮渡 Car ferry
Definition AMapNaviCommonObj.h:457
@ AMapNaviRouteIconPointTypeNULL
无效类型 Invalid type
Definition AMapNaviCommonObj.h:455
@ AMapNaviRouteIconPointTypeFoot
步行扎点 Walking anchor point
Definition AMapNaviCommonObj.h:456
@ AMapNaviRouteIconPointTypeMannedFerry
载人轮渡 Passenger ferry
Definition AMapNaviCommonObj.h:458
FOUNDATION_EXTERN AMapNaviDrivingStrategy ConvertDrivingPreferenceToDrivingStrategy(BOOL multipleRoute, BOOL avoidCongestion, BOOL avoidHighway, BOOL avoidCost, BOOL prioritiseHighway)
将驾车路线规划的偏好设置转换为驾车路径规划策略.注意:当prioritiseHighway为YES时,将忽略avoidHighway和avoidCost的设置 Convert the preferenc...
AMapNaviLinkType
Definition AMapNaviCommonObj.h:442
@ AMapNaviLinkTypeElevatedRd
高架路 Elevated road
Definition AMapNaviCommonObj.h:448
@ AMapNaviLinkTypeFairway
航道 Waterway
Definition AMapNaviCommonObj.h:445
@ AMapNaviLinkTypeUnderPass
隧道 Tunnel
Definition AMapNaviCommonObj.h:446
@ AMapNaviLinkTypeNull
无效 Invalid
Definition AMapNaviCommonObj.h:443
@ AMapNaviLinkTypeBridge
桥梁 Bridge
Definition AMapNaviCommonObj.h:447
@ AMapNaviLinkTypeNormalRoad
普通道路 Ordinary road
Definition AMapNaviCommonObj.h:444
AMapNaviCompositeVCBackwardActionType
Definition AMapNaviCommonObj.h:363
@ AMapNaviCompositeVCBackwardActionTypeNaviPop
Definition AMapNaviCommonObj.h:365
@ AMapNaviCompositeVCBackwardActionTypeDismiss
Definition AMapNaviCommonObj.h:364
AMapNaviInvokerType
Definition AMapNaviCommonObj.h:572
@ AMapNaviInvokerTypeNavi
Definition AMapNaviCommonObj.h:573
@ AMapNaviInvokerTypePlan
Definition AMapNaviCommonObj.h:574
AMapNaviRouteStatus
Definition AMapNaviCommonObj.h:292
@ AMapNaviRouteStatusJam
3 阻塞 Blocked
Definition AMapNaviCommonObj.h:296
@ AMapNaviRouteStatusSeriousJam
4 严重阻塞 Severely blocked
Definition AMapNaviCommonObj.h:297
@ AMapNaviRouteStatusUnknow
0 未知状态 Unknown status
Definition AMapNaviCommonObj.h:293
@ AMapNaviRouteStatusSlow
2 缓行 Slow moving
Definition AMapNaviCommonObj.h:295
@ AMapNaviRouteStatusDefault
5 默认路况(内部道路) Default traffic condition (internal road)
Definition AMapNaviCommonObj.h:298
@ AMapNaviRouteStatusFineOpen
6 极其畅通 Extremely clear
Definition AMapNaviCommonObj.h:299
@ AMapNaviRouteStatusSmooth
1 通畅 Clear
Definition AMapNaviCommonObj.h:294
AMapNaviError
Definition AMapNaviCommonObj.h:29
@ AMapNaviErrorNoGPSPermission
没有定位权限 No location permission
Definition AMapNaviCommonObj.h:31
@ AMapNaviUnknowError
未知错误 Unknown error
Definition AMapNaviCommonObj.h:30
@ AMapNaviErrorNoFullGPSAccuracyPermission
没有定位的精确位置权限 No precise location permission
Definition AMapNaviCommonObj.h:32
AMapNaviDriveEventType
Definition AMapNaviCommonObj.h:491
@ AMapNaviDriveEventLeftTurn
急转弯-左转 Sharp turn - left turn
Definition AMapNaviCommonObj.h:493
@ AMapNaviDriveEventRightLaneChange
急超车-右转 Urgent overtaking - right turn
Definition AMapNaviCommonObj.h:496
@ AMapNaviDriveEventRightTurn
急转弯-右转 Sharp turn - right turn
Definition AMapNaviCommonObj.h:494
@ AMapNaviDriveEventLeftLaneChange
急超车-左转 Urgent overtaking - left turn
Definition AMapNaviCommonObj.h:495
@ AMapNaviDriveEventAccelerate
急加速 Sudden acceleration
Definition AMapNaviCommonObj.h:497
@ AMapNaviDriveEventNone
详细播报 Detailed broadcast
Definition AMapNaviCommonObj.h:492
@ AMapNaviDriveEventBreak
急减速 Sudden deceleration
Definition AMapNaviCommonObj.h:498
AMapNaviCalcRouteState
Definition AMapNaviCommonObj.h:113
@ AMapNaviCalcRouteStatePassRouteError
12 没有找到通向途经点的道路 No route found to the waypoint
Definition AMapNaviCommonObj.h:126
@ AMapNaviCalcRouteStateLackPreview
8 数据缺乏预览数据 Data lacks preview data
Definition AMapNaviCommonObj.h:122
@ AMapNaviCalcRouteStateCLAuthorizationStatusDenied
3000 无定位权限 No location permission
Definition AMapNaviCommonObj.h:131
@ AMapNaviCalcRouteStateCallCenterError
5 呼叫中心错误 Call center error
Definition AMapNaviCommonObj.h:119
@ AMapNaviCalcRouteStateStartRouteError
10 没有找到通向起点的道路 No route found to the starting point
Definition AMapNaviCommonObj.h:124
@ AMapNaviCalcRouteStateProtocolError
4 协议解析错误 Protocol parsing error
Definition AMapNaviCommonObj.h:118
@ AMapNaviCalcRouteStateStartPointError
3 起点错误 Starting point error
Definition AMapNaviCommonObj.h:117
@ AMapNaviCalcRouteStateEnvFailed
0 环境初始化错误 Environment initialization error
Definition AMapNaviCommonObj.h:114
@ AMapNaviCalcRouteStateSucceed
1 路径计算成功 Path calculation successful
Definition AMapNaviCommonObj.h:115
@ AMapNaviCalcRouteStateDistanceTooLong
19 起点/终点/途经点的距离太长 The distance of the origin/destination/waypoints is too long
Definition AMapNaviCommonObj.h:128
@ AMapNaviCalcRouteStateCLAuthorizationReducedAccuracy
3001 无定位的精确位置权限 No precise location permission
Definition AMapNaviCommonObj.h:132
@ AMapNaviCalcRouteStatePassPointError
21 途经点错误 Incorrect waypoints
Definition AMapNaviCommonObj.h:129
@ AMapNaviCalcRouteStateHaveNewCalcTaskWorking
2999 有新的算路任务进行中导致本次算路失败 Route calculation failed due to a new routing task in progress
Definition AMapNaviCommonObj.h:130
@ AMapNaviCalcRouteStateEndPointError
6 终点错误 Destination error
Definition AMapNaviCommonObj.h:120
@ AMapNaviCalcRouteStateEndRouteError
11 没有找到通向终点的道路 No route found to the destination
Definition AMapNaviCommonObj.h:125
@ AMapNaviCalcRouteStateRouteFail
13 算路失败(未知错误) Route calculation failed (unknown error)
Definition AMapNaviCommonObj.h:127
@ AMapNaviCalcRouteStateDataBufError
9 数据格式错误 Data format error
Definition AMapNaviCommonObj.h:123
@ AMapNaviCalcRouteStateEncodeFalse
7 服务端编码错误 Server encoding error
Definition AMapNaviCommonObj.h:121
@ AMapNaviCalcRouteStateNetworkError
2 网络失败 Network failure
Definition AMapNaviCommonObj.h:116
AMapNaviRoadFacilityType
Definition AMapNaviCommonObj.h:401
@ AMapNaviRoadFacilityTypeFailwayCross
铁路道口 Railway crossing
Definition AMapNaviCommonObj.h:410
@ AMapNaviRoadFacilityTypeFallingRocks
注意落石 Beware of falling rocks
Definition AMapNaviCommonObj.h:409
@ AMapNaviRoadFacilityTypeRightInterflow
右侧合流 Merge right
Definition AMapNaviCommonObj.h:404
@ AMapNaviRoadFacilityTypeTruckWeightLimit
货车限重 Truck weight limit
Definition AMapNaviCommonObj.h:421
@ AMapNaviRoadFacilityTypeSlippery
易滑 Slippery
Definition AMapNaviCommonObj.h:411
@ AMapNaviRoadFacilityTypeRightNarrow
右侧变窄 Narrowing on the right
Definition AMapNaviCommonObj.h:416
@ AMapNaviRoadFacilityTypeLinkingTurn
连续转弯 Continuous turn
Definition AMapNaviCommonObj.h:407
@ AMapNaviRoadFacilityTypeTruckHeightLimit
货车限高 Truck height limit
Definition AMapNaviCommonObj.h:419
@ AMapNaviRoadFacilityTypeLeftInterflow
左侧合流 Merge left
Definition AMapNaviCommonObj.h:403
@ AMapNaviRoadFacilityTypeCheckPoint
货车检查站 Truck inspection station
Definition AMapNaviCommonObj.h:422
@ AMapNaviRoadFacilityTypeMaxSpeedLimit
最大限速标志 Maximum speed limit sign
Definition AMapNaviCommonObj.h:412
@ AMapNaviRoadFacilityTypeTruckWidthLimit
货车限宽 Truck width limit
Definition AMapNaviCommonObj.h:420
@ AMapNaviRoadFacilityTypeVillage
村庄 Village
Definition AMapNaviCommonObj.h:414
@ AMapNaviRoadFacilityTypeNULL
0 无 None
Definition AMapNaviCommonObj.h:402
@ AMapNaviRoadFacilityTypeDoubleNarrow
两侧变窄 Narrowing on both sides
Definition AMapNaviCommonObj.h:417
@ AMapNaviRoadFacilityTypeMinSpeedLimit
最小限速标志 Minimum speed limit sign
Definition AMapNaviCommonObj.h:413
@ AMapNaviRoadFacilityTypeAccidentArea
事故多发地 Accident-prone area
Definition AMapNaviCommonObj.h:408
@ AMapNaviRoadFacilityTypeLeftNarrow
左侧变窄 Narrowing on the left
Definition AMapNaviCommonObj.h:415
@ AMapNaviRoadFacilityTypeReverseTurn
反向转弯 Reverse turn
Definition AMapNaviCommonObj.h:406
@ AMapNaviRoadFacilityTypeSharpTurn
急转弯 Sharp turn
Definition AMapNaviCommonObj.h:405
@ AMapNaviRoadFacilityTypeCrosswindArea
横风区 Crosswind area
Definition AMapNaviCommonObj.h:418
AMapNaviOnlineCarHailingType
Definition AMapNaviCommonObj.h:464
@ AMapNaviOnlineCarHailingTypeNone
非网约车模式, 即正常的默认模式 Non-ride-hailing mode, i.e. the normal default mode
Definition AMapNaviCommonObj.h:466
@ AMapNaviOnlineCarHailingTypeInvalid
无效类型 Invalid type
Definition AMapNaviCommonObj.h:465
@ AMapNaviOnlineCarHailingTypePickUp
网约车接驾模式 Ride-hailing pick-up mode
Definition AMapNaviCommonObj.h:467
@ AMapNaviOnlineCarHailingTypeTransport
网约车送驾模式 Ride-hailing drop-off mode
Definition AMapNaviCommonObj.h:468
AMapNaviRoadClass
Definition AMapNaviCommonObj.h:224
@ AMapNaviRoadClassMainRoad
7 主要道路 Main roads
Definition AMapNaviCommonObj.h:232
@ AMapNaviRoadClassVillageRoad
4 乡公路 Township road
Definition AMapNaviCommonObj.h:229
@ AMapNaviRoadClassNotNaviRoad
10 非导航道路 Non-navigation roads
Definition AMapNaviCommonObj.h:235
@ AMapNaviRoadClassNormalRoad
9 普通道路 Ordinary roads
Definition AMapNaviCommonObj.h:234
@ AMapNaviRoadClassMinorRoad
8 次要道路 Secondary roads
Definition AMapNaviCommonObj.h:233
@ AMapNaviRoadClassCountyInternalRoad
5 县乡村内部道路 Village road
Definition AMapNaviCommonObj.h:230
@ AMapNaviRoadClassCountyRoad
3 县道 County road
Definition AMapNaviCommonObj.h:228
@ AMapNaviRoadClassMainStreet
6 主要大街、城市快速道 Main streets, urban expressways
Definition AMapNaviCommonObj.h:231
@ AMapNaviRoadClassProvincialRoad
2 省道 Provincial highway
Definition AMapNaviCommonObj.h:227
@ AMapNaviRoadClassNationalRoad
1 国道 National highway
Definition AMapNaviCommonObj.h:226
@ AMapNaviRoadClassHighWay
0 高速公路 Highway
Definition AMapNaviCommonObj.h:225
AMapNaviRoutePlanType
Definition AMapNaviCommonObj.h:371
@ AMapNaviRoutePlanTypeYaw
2 偏航重算 Recalculation after deviation
Definition AMapNaviCommonObj.h:373
@ AMapNaviRoutePlanTypeUpdateCityData
10 更新城市数据引起的重算 Recalculation caused by city data updates
Definition AMapNaviCommonObj.h:380
@ AMapNaviRoutePlanTypePushRouteData
200 PushRouteData进行导航 Navigation via PushRouteData
Definition AMapNaviCommonObj.h:385
@ AMapNaviRoutePlanTypeParallelRoad
4 平行路切换 Parallel road switching
Definition AMapNaviCommonObj.h:375
@ AMapNaviRoutePlanTypeLimitLine
6 限行算路(车牌限行) Route calculation with traffic restrictions (license plate restrictions)
Definition AMapNaviCommonObj.h:377
@ AMapNaviRoutePlanTypeDamagedRoad
7 道路关闭 Road closure
Definition AMapNaviCommonObj.h:378
@ AMapNaviRoutePlanTypeLimitForbid
11 限时禁行引起的重算(在线) Recalculation due to temporary traffic restrictions (online)
Definition AMapNaviCommonObj.h:381
@ AMapNaviRoutePlanTypeDispatch
16 交警调度请求路线 Traffic police dispatch requesting routes
Definition AMapNaviCommonObj.h:384
@ AMapNaviRoutePlanTypeChangeStratege
3 切换算路策略 Switching route calculation strategy
Definition AMapNaviCommonObj.h:374
@ AMapNaviRoutePlanTypeChangeJnyPnt
9 停车场模式/沿途搜索设置行程点 Parking mode/Search for waypoints along the route
Definition AMapNaviCommonObj.h:379
@ AMapNaviRoutePlanTypeTMC
5 躲避拥堵 Avoiding congestion
Definition AMapNaviCommonObj.h:376
@ AMapNaviRoutePlanTypeMutiRouteRequest
14 导航中请求备选路线 Requesting alternative routes during navigation
Definition AMapNaviCommonObj.h:383
@ AMapNaviRoutePlanTypeCommon
1 直接算路 Direct route calculation
Definition AMapNaviCommonObj.h:372
@ AMapNaviRoutePlanTypeManualRefresh
12 手动刷新 Manual refresh
Definition AMapNaviCommonObj.h:382
AMapNaviViewTrackingMode
Definition AMapNaviCommonObj.h:47
@ AMapNaviViewTrackingModeCarNorth
1 车头朝上 Head up
Definition AMapNaviCommonObj.h:49
@ AMapNaviViewTrackingModeMapNorth
0 正北朝上 North up
Definition AMapNaviCommonObj.h:48
AMapNaviViewMapModeType
Definition AMapNaviCommonObj.h:474
@ AMapNaviViewMapModeTypeCustom
自定义地图样式 (还需传入 MAMapCustomStyleOptions ) Custom map style (MAMapCustomStyleOptions also needs to be pa...
Definition AMapNaviCommonObj.h:478
@ AMapNaviViewMapModeTypeDay
白天模式 Day mode
Definition AMapNaviCommonObj.h:475
@ AMapNaviViewMapModeTypeDayNightAuto
根据日出日落时间自动切换白天黑夜 Automatically switch between day and night based on sunrise and sunset times
Definition AMapNaviCommonObj.h:477
@ AMapNaviViewMapModeTypeNight
黑夜模式 Night mode
Definition AMapNaviCommonObj.h:476
AMapNaviIntervalCameraPositionState
Definition AMapNaviCommonObj.h:391
@ AMapNaviIntervalCameraPositionStateIn
2 在区间测速路段内 Within the section speed enforcement zone
Definition AMapNaviCommonObj.h:394
@ AMapNaviIntervalCameraPositionStateNULL
0 无 None
Definition AMapNaviCommonObj.h:392
@ AMapNaviIntervalCameraPositionStateReady
1 即将进入区间测速路段(还未进入) About to enter the section speed enforcement zone (not yet entered)
Definition AMapNaviCommonObj.h:393
@ AMapNaviIntervalCameraPositionStateOut
3 已离开区间测速路段(包括:已经过了测速路段终点 和 中途从区间中离开了) Exited the section speed enforcement zone (including: passed t...
Definition AMapNaviCommonObj.h:395
AMapNaviRoutePlanPOIType
Definition AMapNaviCommonObj.h:305
@ AMapNaviRoutePlanPOITypeWay
2 途径点 Waypoint
Definition AMapNaviCommonObj.h:308
@ AMapNaviRoutePlanPOITypeEnd
1 终点 End point
Definition AMapNaviCommonObj.h:307
@ AMapNaviRoutePlanPOITypeStart
0 起点 Start point
Definition AMapNaviCommonObj.h:306
AMapNaviMode
Definition AMapNaviCommonObj.h:38
@ AMapNaviModeNone
没有开始导航 Navigation not started
Definition AMapNaviCommonObj.h:39
@ AMapNaviModeGPS
实时导航 Real-time navigation
Definition AMapNaviCommonObj.h:40
@ AMapNaviModeEmulator
模拟导航 Simulation navigation
Definition AMapNaviCommonObj.h:41
AMapNaviDrivingStrategy
Definition AMapNaviCommonObj.h:72
@ AMapNaviDrivingStrategyMultipleAvoidHighwayAndCostAndCongestion
18 多路径: 不走高速 & 避免收费 & 躲避拥堵 Multiple routes: Avoid highways & Avoid tolls & Avoid congestion
Definition AMapNaviCommonObj.h:93
@ AMapNaviDrivingStrategyMultipleAvoidCongestion
12 多路径: 躲避拥堵 Multiple routes: Avoid congestion
Definition AMapNaviCommonObj.h:87
@ AMapNaviDrivingStrategyMultipleAvoidHighwayAndCongestion
15 多路径: 不走高速 & 躲避拥堵 Multiple routes: Avoid highways & Avoid congestion
Definition AMapNaviCommonObj.h:90
@ AMapNaviDrivingStrategySinglePrioritiseHighwayAndDistance
单路径:高速优先&躲避拥堵 Single route: prioritize highways & avoid congestion since10.2.0
Definition AMapNaviCommonObj.h:104
@ AMapNaviDrivingStrategySingleAvoidCostAndCongestion
8 单路径: 避免收费 & 躲避拥堵 Single route: avoid tolls & avoid congestion
Definition AMapNaviCommonObj.h:82
@ AMapNaviDrivingStrategySingleAvoidExpressway
3 单路径: 不走快速路 Single route: Avoid expressways
Definition AMapNaviCommonObj.h:77
@ AMapNaviDrivingStrategySinglePrioritiseDistance
2 单路径: 距离优先 Single route: Distance priority
Definition AMapNaviCommonObj.h:76
@ AMapNaviDrivingStrategySingleAvoidHighwayAndCostAndCongestion
9 单路径: 不走高速 & 避免收费 & 躲避拥堵 Single route: avoid highways & avoid tolls & avoid congestion
Definition AMapNaviCommonObj.h:83
@ AMapNaviMotorStrategyMultipleAvoidCost
2004 针对摩托车多路径: 避免收费 Multiple routes for motorcycles: Avoid tolls since 8.0.0
Definition AMapNaviCommonObj.h:100
@ AMapNaviDrivingStrategySingleAvoidHighwayAndShortestDistance
单路径:高速优先&距离优先 Single route: Highway priority & Distance priority since10.2.0
Definition AMapNaviCommonObj.h:105
@ AMapNaviDrivingStrategySingleAvoidHighwayPrioritiseSpeedCostDistance
单路径:不走高速&距离优先 Single path: Do not take highways&prioritize distance since since10....
Definition AMapNaviCommonObj.h:106
@ AMapNaviDrivingStrategyMultipleShortestTimeDistance
11 多路径: 时间最短 & 距离最短 Multiple routes: Shortest time & Shortest distance
Definition AMapNaviCommonObj.h:86
@ AMapNaviDrivingStrategySinglePrioritiseSpeedCostDistance
5 单路径: 速度优先 & 费用优先 & 距离优先 Single route: Speed first & cost first & distance first
Definition AMapNaviCommonObj.h:79
@ AMapNaviDrivingStrategySingleAvoidHighway
6 单路径: 不走高速 Single route: avoid highways
Definition AMapNaviCommonObj.h:80
@ AMapNaviMotorStrategyMultipleDefault
2001 针对摩托车多路径: 默认 Multiple routes for motorcycles: Default since 8.0.0
Definition AMapNaviCommonObj.h:97
@ AMapNaviMotorStrategyMultipleAvoidHighway
2002 针对摩托车多路径: 不走高速 Multiple routes for motorcycles: Avoid highways since 8.0.0
Definition AMapNaviCommonObj.h:98
@ AMapNaviDrivingStrategySinglePrioritiseHighwayAvoidCongestion
单路径:高速优先&速度优先 Single route: Highway priority & Speed priority since10.2.0
Definition AMapNaviCommonObj.h:103
@ AMapNaviDrivingStrategySingleAvoidHighwayAndCost
7 单路径: 不走高速 & 避免收费 Single route: avoid highways & avoid tolls
Definition AMapNaviCommonObj.h:81
@ AMapNaviDrivingStrategyMultipleAvoidHighway
13 多路径: 不走高速 Multiple routes: Avoid highways
Definition AMapNaviCommonObj.h:88
@ AMapNaviDrivingStrategySingleAvoidCongestion
4 单路径: 躲避拥堵 Single route: Avoid congestion
Definition AMapNaviCommonObj.h:78
@ AMapNaviDrivingStrategyMultipleAvoidHighwayAndCost
16 多路径: 不走高速 & 避免收费 Multiple routes: Avoid highways & Avoid tolls
Definition AMapNaviCommonObj.h:91
@ AMapNaviDrivingStrategySinglePrioritiseHighway
单路径:不走高速&躲避拥堵 Single route: Avoid highways & traffic congestion since10.2.0
Definition AMapNaviCommonObj.h:102
@ AMapNaviDrivingStrategyMultiplePrioritiseHighwayAvoidCongestion
20 多路径: 高速优先 & 躲避拥堵 Multiple routes: Highway priority & Avoid congestion
Definition AMapNaviCommonObj.h:95
@ AMapNaviDrivingStrategyMultipleDefault
10 多路径: 默认,速度优先(避让拥堵+速度优先+避免收费) Multiple routes: Default, Speed priority (Avoid congestion + Speed pr...
Definition AMapNaviCommonObj.h:85
@ AMapNaviDrivingStrategyMultiplePrioritiseHighway
19 多路径: 高速优先 Multiple routes: Highway priority
Definition AMapNaviCommonObj.h:94
@ AMapNaviDrivingStrategyMultipleAvoidCost
14 多路径: 避免收费 Multiple routes: Avoid tolls
Definition AMapNaviCommonObj.h:89
@ AMapNaviMotorStrategyMultiplePrioritiseHighway
2003 针对摩托车多路径: 高速优先 Multiple routes for motorcycles: Highway priority since 8.0.0
Definition AMapNaviCommonObj.h:99
@ AMapNaviDrivingStrategySingleAvoidHighwayAvoidCongestion
Definition AMapNaviCommonObj.h:101
@ AMapNaviDrivingStrategyMultipleAvoidCostAndCongestion
17 多路径: 避免收费 & 躲避拥堵 Multiple routes: Avoid tolls & Avoid congestion
Definition AMapNaviCommonObj.h:92
@ AMapNaviDrivingStrategySingleInvalid
-1 非法 Illegal
Definition AMapNaviCommonObj.h:73
@ AMapNaviDrivingStrategySingleAvoidCost
1 单路径: 避免收费 Single route: Avoid tolls
Definition AMapNaviCommonObj.h:75
@ AMapNaviDrivingStrategySingleDefault
0 单路径: 默认,速度优先(常规最快) Single route: Default, speed priority (conventionally fastest)
Definition AMapNaviCommonObj.h:74
AMapNaviType
Definition AMapNaviCommonObj.h:513
@ AMapNaviTypeEleBike
骑行(电动车) Cycling (Electric Vehicle)
Definition AMapNaviCommonObj.h:518
@ AMapNaviTypeInvalid
无效值 Invalid value
Definition AMapNaviCommonObj.h:514
@ AMapNaviTypeDrive
驾车 Driving
Definition AMapNaviCommonObj.h:515
@ AMapNaviTypeWalk
步行 Walking
Definition AMapNaviCommonObj.h:517
@ AMapNaviTypeRide
骑行(自行车) Cycling (Bicycle)
Definition AMapNaviCommonObj.h:516
void(^ AMapNaviFullLinkLogBlock)(NSString *_Nullable info)
全链路日志 Full link log
Definition AMapNaviCommonObj.h:550
AMapNaviDriveViewShowMode
Definition AMapNaviCommonObj.h:55
@ AMapNaviDriveViewShowModeCarPositionLocked
锁车状态 Locked state
Definition AMapNaviCommonObj.h:56
@ AMapNaviDriveViewShowModeNormal
普通状态 Normal state
Definition AMapNaviCommonObj.h:58
@ AMapNaviDriveViewShowModeOverview
全览状态 Overview state
Definition AMapNaviCommonObj.h:57
typedef NS_OPTIONS(NSUInteger, AMapNaviCompositeBroadcastType)
Definition AMapNaviCommonObj.h:483
AMapNaviElevatedRoadStatusFlag
Definition AMapNaviCommonObj.h:323
@ AMapNaviElevatedRoadStatusFlagUp
2 可切换到高架上 Can switch to on elevated road
Definition AMapNaviCommonObj.h:326
@ AMapNaviElevatedRoadStatusFlagNone
0 无高架可切换 No elevated road to switch
Definition AMapNaviCommonObj.h:324
@ AMapNaviElevatedRoadStatusFlagUnder
1 可切换到高架下 Can switch to under elevated road
Definition AMapNaviCommonObj.h:325
AMapNaviRouteNotifyDataType
Definition AMapNaviCommonObj.h:428
@ AMapNaviRouteNotifyDataTypeRestrictArea
1 限行区域通知 Restricted area notification
Definition AMapNaviCommonObj.h:430
@ AMapNaviRouteNotifyDataTypeChangeMainRoute
20 备选路线切换为主路线的结果通知 Alternate route switched to main route notification
Definition AMapNaviCommonObj.h:435
@ AMapNaviRouteNotifyDataTypeRoadClosedArea
3 道路关闭通知 Road closure notification
Definition AMapNaviCommonObj.h:432
@ AMapNaviRouteNotifyDataTypeDispatch
5 交警路线调度通知 Traffic police route dispatch notification
Definition AMapNaviCommonObj.h:434
@ AMapNaviRouteNotifyDataTypeJamArea
4 拥堵区域通知 Congestion area notification
Definition AMapNaviCommonObj.h:433
@ AMapNaviRouteNotifyDataTypeNULL
0 无效 Invalid
Definition AMapNaviCommonObj.h:429
@ AMapNaviRouteNotifyDataTypeForbidArea
2 禁行区域通知 No-entry zone notification
Definition AMapNaviCommonObj.h:431
@ AMapNaviRouteNotifyDataTypeGPSSignalWeak
21 手机卫星定位信号弱的通知 Notification of Weak Satellite Positioning Signal on Mobile Phone
Definition AMapNaviCommonObj.h:436
FOUNDATION_EXTERN UIImage * CreateLaneInfoImageWithLaneInfo(NSString *laneBackInfo, NSString *laneSelectInfo)
创建车道信息图片 Create lane information image
AMapNaviFormWay
Definition AMapNaviCommonObj.h:241
@ AMapNaviFormWayTurnLeftAndRightRoad
16 左右转专用道 Left and Right Turn Lane
Definition AMapNaviCommonObj.h:258
@ AMapNaviFormWayExit
9 出口 Exit
Definition AMapNaviCommonObj.h:251
@ AMapNaviFormWayRampAndJCT
8 匝道与JCT Ramp and JCT
Definition AMapNaviCommonObj.h:250
@ AMapNaviFormWayTurnRightRoadA
11 A类右转专用道 Class A Right-Turn Lane
Definition AMapNaviCommonObj.h:253
@ AMapNaviFormWayRestAreaRampJCT
58 服务区与匝道以及JCT Service Area, Ramp and JCT
Definition AMapNaviCommonObj.h:261
@ AMapNaviFormWayMainRoad
1 主路 Main road
Definition AMapNaviCommonObj.h:243
@ AMapNaviFormWaySideRoad
7 辅路 Frontage Road
Definition AMapNaviCommonObj.h:249
@ AMapNaviFormWayRestAreaAndJCT
53 服务区与JCT Service Area and JCT
Definition AMapNaviCommonObj.h:259
@ AMapNaviFormWayJCT
3 JCT道路 JCT roads
Definition AMapNaviCommonObj.h:245
@ AMapNaviFormWayRoundabout
4 环岛 Roundabouts
Definition AMapNaviCommonObj.h:246
@ AMapNaviFormWayTurnLeftRoadA
13 A类左转专用道 Class A Left-Turn Lane
Definition AMapNaviCommonObj.h:255
@ AMapNaviFormWayRamp
6 匝道 Ramp
Definition AMapNaviCommonObj.h:248
@ AMapNaviFormWayTurnRightRoadB
12 B类右转专用道 Class B Right-Turn Lane
Definition AMapNaviCommonObj.h:254
@ AMapNaviFormWayNone
-1 无效 Invalid
Definition AMapNaviCommonObj.h:242
@ AMapNaviFormWayEntrance
10 入口 Entrance
Definition AMapNaviCommonObj.h:252
@ AMapNaviFormWayTurnLeftRoadB
14 B类左转专用道 Class B Left-Turn Lane
Definition AMapNaviCommonObj.h:256
@ AMapNaviFormWayNormalRoad
15 普通道路 Ordinary Road
Definition AMapNaviCommonObj.h:257
@ AMapNaviFormWayRestArea
5 服务区 Service Area
Definition AMapNaviCommonObj.h:247
@ AMapNaviFormWayRestAreaAndRamp
56 服务区与匝道 Service Area and Ramp
Definition AMapNaviCommonObj.h:260
@ AMapNaviFormWayInternalRoad
2 路口内部道路 Intersection internal roads
Definition AMapNaviCommonObj.h:244
AMapNaviAudioOutputMode
Definition AMapNaviCommonObj.h:20
@ AMapNaviAudioOutputModeSpecial
Definition AMapNaviCommonObj.h:23
@ AMapNaviAudioOutputModeText
Definition AMapNaviCommonObj.h:22
@ AMapNaviAudioOutputModeNone
Definition AMapNaviCommonObj.h:21
AMapNaviTTSDropReason
Definition AMapNaviCommonObj.h:1605
@ AMapNaviTTSDropReasonPriorityNotHigher
新播报优先级不高于当前播报
Definition AMapNaviCommonObj.h:1606
@ AMapNaviTTSDropReasonStartFailed
TTS SDK 启动合成失败
Definition AMapNaviCommonObj.h:1609
@ AMapNaviTTSDropReasonSdkUnavailable
TTS SDK 不可用
Definition AMapNaviCommonObj.h:1608
@ AMapNaviTTSDropReasonInterruptedByHigherPriority
当前播报被更高优先级播报打断
Definition AMapNaviCommonObj.h:1607
AMapNaviAppLangType
Definition AMapNaviCommonObj.h:522
@ AMapNaviAppLangZhHantHK
中文繁体-香港 Traditional Chinese - Hong Kong
Definition AMapNaviCommonObj.h:524
@ AMapNaviAppLangZhHans
中文简体 Simplified Chinese
Definition AMapNaviCommonObj.h:523
@ AMapNaviAppLangZhHantTW
中文繁体-台湾 Traditional Chinese - Taiwan
Definition AMapNaviCommonObj.h:525
AMapNaviDetectedMode
Definition AMapNaviCommonObj.h:214
@ AMapNaviDetectedModeCameraAndSpecialRoad
3 电子眼和特殊道路设施 Electronic eyes and special road facilities
Definition AMapNaviCommonObj.h:218
@ AMapNaviDetectedModeSpecialRoad
2 仅特殊道路设施 Only special road facilities
Definition AMapNaviCommonObj.h:217
@ AMapNaviDetectedModeCamera
1 仅电子眼 Only electronic eyes
Definition AMapNaviCommonObj.h:216
@ AMapNaviDetectedModeNone
0 关闭所有 Turn off all
Definition AMapNaviCommonObj.h:215
AMapNaviRingType
Definition AMapNaviCommonObj.h:341
@ AMapNaviRingTypeElecDing
102 巡航状态下通过电子眼(所有类型)的提示音 Prompt sound when passing through electronic eyes (all types) in cruise mode
Definition AMapNaviCommonObj.h:346
@ AMapNaviRingTypeElecOverSpeedDing
103 巡航状态下电子眼播报点超速时的提示音 Prompt sound when exceeding the speed limit at electronic eye broadcast points...
Definition AMapNaviCommonObj.h:347
@ AMapNaviRingTypeReroute
1 偏航重算的提示音 Prompt sound for recalculating the route
Definition AMapNaviCommonObj.h:343
@ AMapNaviRingTypeDong
101 导航状态下通过测速电子眼的提示音 Prompt sound when passing a speed camera in navigation mode
Definition AMapNaviCommonObj.h:345
@ AMapNaviRingTypeNULL
0 无 None
Definition AMapNaviCommonObj.h:342
@ AMapNaviRingTypeDing
100 即将到达转向路口时的提示音 Prompt sound when approaching a turning intersection
Definition AMapNaviCommonObj.h:344
AMapNaviTravelStrategy
Definition AMapNaviCommonObj.h:64
@ AMapNaviTravelStrategySingleDefault
算路支持一条 Route calculation supports one route
Definition AMapNaviCommonObj.h:65
@ AMapNaviTravelStrategyMultipleDefault
算路支持多条 Route calculation supports multiple routes
Definition AMapNaviCommonObj.h:66
AMapNaviCompositeThemeType
Definition AMapNaviCommonObj.h:332
@ AMapNaviCompositeThemeTypeLight
1 浅色系 Light tones
Definition AMapNaviCommonObj.h:334
@ AMapNaviCompositeThemeTypeDark
2 暗色系 Dark tones
Definition AMapNaviCommonObj.h:335
@ AMapNaviCompositeThemeTypeDefault
0 蓝色系 Blue tones
Definition AMapNaviCommonObj.h:333
AMapNaviSoundType
Definition AMapNaviCommonObj.h:203
@ AMapNaviSoundTypeNavigationStart
开始导航 Start navigation since 7.8.0
Definition AMapNaviCommonObj.h:205
@ AMapNaviSoundTypeNavigationEnd
到达目的地 Arrived at destination since 7.8.0
Definition AMapNaviCommonObj.h:206
@ AMapNaviSoundTypeInterrupt
打断类型(播报内容为空),表示下一句播报很重要,可能会打断前句 Interruption type (announcement content is empty),...
Definition AMapNaviCommonObj.h:208
@ AMapNaviSoundTypeDefault
默认播报 Default announcement
Definition AMapNaviCommonObj.h:204
@ AMapNaviSoundTypeYaw
偏航播报 Off-route announcement since 7.9.0
Definition AMapNaviCommonObj.h:207
NSString *const AMapNaviErrorDomain
Definition AMapNaviCommonObj.h:1919
Definition AMapNaviCommonObj.h:1894
电子眼信息类 Electronic eye information category
Definition AMapNaviCommonObj.h:780
充电详情 Charging details since 10.1.0
Definition AMapNaviCommonObj.h:1795
Definition AMapNaviCommonObj.h:1228
Definition AMapNaviCommonObj.h:937
巡航模式信息类 Cruise mode information
Definition AMapNaviCommonObj.h:838
Definition AMapNaviCommonObj.h:1433
Definition AMapNaviCommonObj.h:1469
Definition AMapNaviCommonObj.h:1417
聚合段信息类 Aggregation segment information class since 5.1.0
Definition AMapNaviCommonObj.h:699
导航段信息类 Navigation segment information class
Definition AMapNaviCommonObj.h:677
Definition AMapNaviCommonObj.h:1737
Definition AMapNaviCommonObj.h:757
Definition AMapNaviCommonObj.h:1110
Definition AMapNaviCommonObj.h:1585
AMapNaviPOI since 10.1.0.
Definition AMapNaviCommonObj.h:1767
Definition AMapNaviCommonObj.h:1328
Definition AMapNaviCommonObj.h:1352
Definition AMapNaviCommonObj.h:1035
Definition AMapNaviCommonObj.h:652
Definition AMapNaviCommonObj.h:616
CGFloat latitude
Definition AMapNaviCommonObj.h:620
CGFloat longitude
Definition AMapNaviCommonObj.h:624
Definition AMapNaviCommonObj.h:1509
Definition AMapNaviCommonObj.h:1541
Definition AMapNaviCommonObj.h:998
Definition AMapNaviCommonObj.h:1172
骑行电动车林荫路路线信息 Cycling/walking road shade route information
Definition AMapNaviCommonObj.h:1705
骑行电动车林荫路请求结果 Cycling/walking road shade request result
Definition AMapNaviCommonObj.h:1722
Definition AMapNaviCommonObj.h:1144
Definition AMapNaviRoute.h:186
Definition AMapNaviCommonObj.h:1292
Definition AMapNaviCommonObj.h:982
Definition AMapNaviCommonObj.h:1192
交通事件信息 Traffic incident information since 10.0.920
Definition AMapNaviCommonObj.h:1695
Definition AMapNaviCommonObj.h:1392
服务区子poi since 10.1.0 Service Area Sub POI Since 10.1.0
Definition AMapNaviCommonObj.h:1824
Definition AMapNaviCommonObj.h:1834
服务区域信息 Service area information since 5.0.0
Definition AMapNaviCommonObj.h:806
Definition AMapNaviCommonObj.h:1871
Definition AMapNaviCommonObj.h:1272
Definition AMapNaviCommonObj.h:1644
Definition AMapNaviCommonObj.h:1614
Definition AMapNaviCommonObj.h:1363
交通事件信息 Traffic incident information since 10.0.920
Definition AMapNaviCommonObj.h:1667
道路交通设施类 Road traffic facilities
Definition AMapNaviCommonObj.h:898
Definition AMapNaviCommonObj.h:1308
前方交通路况信息类 Traffic condition information class ahead
Definition AMapNaviCommonObj.h:724
Definition AMapNaviCommonObj.h:1054
© 2017 高德信息技术有限公司 版权所有,保留所有权利。