39 lines
1.1 KiB
Objective-C
39 lines
1.1 KiB
Objective-C
//
|
|
// AMapNaviStatisticsInfo.h
|
|
// AMapNaviKit
|
|
//
|
|
// Created by AutoNavi on 15/12/28.
|
|
// Copyright © 2015年 Amap. All rights reserved.
|
|
//
|
|
|
|
#import "AMapNaviCommonObj.h"
|
|
|
|
///导航统计信息
|
|
@interface AMapNaviStatisticsInfo : NSObject<NSCopying,NSCoding>
|
|
|
|
///实际的行驶用时(包括中途停车时间,单位:秒)
|
|
@property (nonatomic, assign) NSInteger actualDrivenTime;
|
|
|
|
///实际的行驶里程(单位:米)
|
|
@property (nonatomic, assign) NSInteger actualDrivenDisance;
|
|
|
|
///平均速度(实际的行驶里程/实际的行驶用时,单位:公里/小时)
|
|
@property (nonatomic, assign) NSInteger averageSpeed;
|
|
|
|
///最高速度(单位:公里/小时)
|
|
@property (nonatomic, assign) NSInteger highestSpeed;
|
|
|
|
///电子眼播报的超速次数,关闭电子眼播报(AMapNaviDriveManager.updateCameraInfo)则没有计数
|
|
@property (nonatomic, assign) NSInteger overspeedCount;
|
|
|
|
///偏航次数
|
|
@property (nonatomic, assign) NSInteger rerouteCount;
|
|
|
|
///急刹车次数
|
|
@property (nonatomic, assign) NSInteger brakesCount;
|
|
|
|
///等待及拥堵时间(单位:秒)
|
|
@property (nonatomic, assign) NSInteger slowTime;
|
|
|
|
@end
|