jsdw_ios/Pods/AMapNavi-NO-IDFA/AMapNaviKit.framework/Headers/AMapNaviStatisticsInfo.h

48 lines
1.6 KiB
Objective-C

//
// AMapNaviStatisticsInfo.h
// AMapNaviKit
//
// Created by AutoNavi on 15/12/28.
// Copyright © 2015年 Amap. All rights reserved.
//
#import "AMapNaviCommonObj.h"
///导航统计信息
///Navigation statistics
@interface AMapNaviStatisticsInfo : NSObject<NSCopying,NSCoding>
///实际的行驶用时(包括中途停车时间,单位:秒)
///Actual driving time (including stop time, unit: seconds)
@property (nonatomic, assign) NSInteger actualDrivenTime;
///实际的行驶里程(单位:米)
///Actual driving distance (unit: meters)
@property (nonatomic, assign) NSInteger actualDrivenDisance;
///平均速度(实际的行驶里程/实际的行驶用时,单位:公里/小时)
///Average speed (actual driving distance/actual driving time, unit: km/h)
@property (nonatomic, assign) NSInteger averageSpeed;
///最高速度(单位:公里/小时)
///Maximum speed (unit: km/h)
@property (nonatomic, assign) NSInteger highestSpeed;
///电子眼播报的超速次数,关闭电子眼播报(AMapNaviDriveManager.updateCameraInfo)则没有计数
///The count of speeding detected by electronic eye alerts will not be recorded if the electronic eye alerts are turned off (AMapNaviDriveManager.updateCameraInfo)
@property (nonatomic, assign) NSInteger overspeedCount;
///偏航次数
///Number of route deviations
@property (nonatomic, assign) NSInteger rerouteCount;
///急刹车次数
///Number of sudden brakes
@property (nonatomic, assign) NSInteger brakesCount;
///等待及拥堵时间(单位:秒)
///Waiting and congestion time (unit: seconds)
@property (nonatomic, assign) NSInteger slowTime;
@end