ifish/Ifish/BMKMap3.3.0/BaiduMapAPI_Base.framework/Headers/BMKUserLocation.h

31 lines
881 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// BMKUserLocation.h
// BaseComponent
//
// Created by Baidu on 3/26/14.
// Copyright (c) 2014 baidu. All rights reserved.
//
#import <CoreLocation/CLLocation.h>
#import <Foundation/Foundation.h>
#import "BMKBaseComponent.h"
@class CLLocation;
@class CLHeading;
@interface BMKUserLocation : NSObject
/// 位置更新状态如果正在更新位置信息则该值为YES
@property (readonly, nonatomic, getter=isUpdating) BOOL updating;
/// 位置信息尚未定位成功则该值为nil
@property (readonly, nonatomic,strong) CLLocation *location;
/// heading信息尚未定位成功则该值为nil
@property (readonly, nonatomic, strong) CLHeading *heading;
/// 定位标注点要显示的标题信息
@property (strong, nonatomic) NSString *title;
/// 定位标注点要显示的子标题信息.
@property (strong, nonatomic) NSString *subtitle;
@end