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

60 lines
1.7 KiB
Objective-C

//
// AMapNaviLocation.h
// AMapNaviKit
//
// Created by eidan on 2018/1/18.
// Copyright © 2018年 Amap. All rights reserved.
//
#import "AMapNaviCommonObj.h"
///当前的自车位置
///Current vehicle position
@interface AMapNaviLocation : NSObject<NSCopying>
///经纬度
///Latitude and longitude
@property (nonatomic, strong) AMapNaviPoint *coordinate;
///精确度
///Accuracy
@property (nonatomic, assign) double accuracy;
///高度
///Altitude
@property (nonatomic, assign) double altitude;
///方向
///Direction
@property (nonatomic, assign) double heading;
///速度(km/h)
///Speed (km/h)
@property (nonatomic, assign) NSInteger speed;
///时间戳
///Timestamp
@property (nonatomic, strong) NSDate *timestamp;
///是否匹配在道路上
///Whether matched on the road
@property (nonatomic, assign) BOOL isMatchNaviPath;
///当前所在的segment段的index,从0开始 since 6.7.0
///The index of the current segment, starting from 0. since 6.7.0
@property (nonatomic, assign) int currentSegmentIndex;
///当前所在的link段的index,从0开始 since 6.7.0
///The index of the current link, starting from 0. since 6.7.0
@property (nonatomic, assign) int currentLinkIndex;
///当前自车位置在当前link段所在的point的index,从0开始 since 6.7.0
///The index of the current vehicle position point in the current link segment, starting from 0. since 6.7.0
@property (nonatomic, assign) int currentPointIndex;
///当前定位点是否为参与导航的网络点. 注意:只针对驾车. since 6.8.0
///Whether the current positioning point is a network point involved in navigation. Note: only for driving. since 6.8.0
@property (nonatomic, assign) BOOL isNetworkNavi;
@end