BaiduMap_IOSSDK_v6.6.5_Docs 6.6.5
载入中...
搜索中...
未找到
BMKMapView.h
浏览该文件的文档.
1/*
2 * BMKMapView.h
3 * BMapKit
4 *
5 * Copyright 2011 Baidu Inc. All rights reserved.
6 *
7 */
8
9#import "BMKAnnotation.h"
10#import "BMKAnnotationView.h"
11#import "BMKOverlayView.h"
12#import "BMKMapStatus.h"
14#import "BMKHeatMap.h"
15#import "BMKHexagonHeatMap.h"
20#import "BMKMapTouch.h"
21
22NS_ASSUME_NONNULL_BEGIN
23@class BMMapControl;
24@class CompassOverlay;
25@class BMKUserLocation;
26@protocol BMKMapViewDelegate;
27
36@interface BMKMapPoi : NSObject
37
39@property (nonatomic, copy, nullable) NSString *text;
40
42@property (nonatomic, assign) CLLocationCoordinate2D pt;
43
45@property (nonatomic, copy, nullable) NSString *uid;
46
48@property (nonatomic, assign) BMKTrafficUGCType trafficUGCType;
49@end
50
57
67
75
82
87
89typedef enum : NSInteger {
90 BMKMapParticleEffectUnknow = -1, // 未知,关闭粒子效果时传入该值将关闭所有粒子效果
96 BMKMapParticleEffectFlower = 9 // 花瓣
98
99
107
114
115
117@interface BMKMapView : UIView
118
120@property (nonatomic, weak, nullable) id<BMKMapViewDelegate> delegate;
121
123@property (nonatomic, weak, nullable) id<BMKMapGestureDelegate> gestureDelegate;
124
126@property (nonatomic, assign) BMKMapType mapType;
127
134@property (nonatomic, assign) BMKMapLanguageType languageType;
135
138@property (nonatomic, strong) UIColor *backgroundColor;
139
143@property (nonatomic, strong) UIImage *backgroundImage;
144
146@property (nonatomic, assign) BMKCoordinateRegion region;
147
149@property (nonatomic, assign) BMKCoordinateRegion limitMapRegion;
150
152@property (nonatomic, assign) CGPoint compassPosition;
153
155@property (nonatomic, readonly) CGSize compassSize;
156
158@property (nonatomic, assign) CLLocationCoordinate2D centerCoordinate;
159
163@property (nonatomic, assign) NSInteger fontSizeLevel;
164
166@property (nonatomic, assign) float zoomLevel;
167
169@property (nonatomic, assign) float minZoomLevel;
170
172@property (nonatomic, assign) float maxZoomLevel;
173
175@property (nonatomic, assign) int rotation;
176
178@property (nonatomic, assign) int overlooking;
179
181@property (nonatomic, assign) int minOverlooking;
182
184@property(nonatomic, getter = isBuildingsEnabled) BOOL buildingsEnabled;
185
187@property(nonatomic, assign) BOOL showMapPoi;
188
190@property(nonatomic, getter = isTrafficEnabled) BOOL trafficEnabled;
192@property(nonatomic, getter = isCustomTrafficColorEnabled) BOOL customTrafficColorEnabled;
193
195@property(nonatomic, getter = isBaiduHeatMapEnabled) BOOL baiduHeatMapEnabled;
196
198@property(nonatomic) BOOL gesturesEnabled;
199
201@property(nonatomic, getter = isZoomEnabled) BOOL zoomEnabled;
202
204@property(nonatomic, getter = isZoomEnabledWithTap) BOOL zoomEnabledWithTap;
205
207@property(nonatomic, getter = isScrollEnabled) BOOL scrollEnabled;
208
210@property(nonatomic, getter = isOverlookEnabled) BOOL overlookEnabled;
211
213@property(nonatomic, getter = isRotateEnabled) BOOL rotateEnabled;
214
216@property(nonatomic, assign) BOOL forceTouchEnabled;
217
219@property(nonatomic, assign) BOOL gestureZoomAnimationEnabled;
220
222@property (nonatomic, assign) BOOL showMapScaleBar;
223
225@property (nonatomic, assign) CGPoint mapScaleBarPosition;
226
228@property (nonatomic, readonly) CGSize mapScaleBarSize;
229
231@property (nonatomic, assign) BMKLogoPosition logoPosition;
232
234@property (nonatomic, assign) BMKMapRect visibleMapRect;
235
239@property (nonatomic, assign) UIEdgeInsets mapPadding;
240
242@property (nonatomic, assign) BOOL updateTargetScreenPtWhenMapPaddingChanged;
243
248@property(nonatomic, getter = isChangeWithTouchPointCenterEnabled) BOOL ChangeWithTouchPointCenterEnabled;
249
254@property(nonatomic, getter = isChangeCenterWithDoubleTouchPointEnabled) BOOL ChangeCenterWithDoubleTouchPointEnabled;
255
257@property(nonatomic, assign) BOOL supportBackgroundDraw;
258
262+ (void)customMapStyle:(NSString *)customMapStyleJsonFilePath __deprecated_msg("Please use - (void)setCustomMapStyleEnable:(BOOL)enable");
263
266+ (void)enableCustomMapStyle:(BOOL)enable __deprecated_msg("Please use - (void)setCustomMapStylePath:(NSString *)customMapStyleFilePath");
267
270+ (void)willBackGround __deprecated_msg("废弃方法(空实现),逻辑由地图SDK控制");
271
274+ (void)didForeGround __deprecated_msg("废弃方法(空实现),逻辑由地图SDK控制");
275
278+ (BOOL)setBaiduMapSDKMetalEnable:(BOOL)metalEnable;
279
282+ (BOOL)getBaiduMapSDKMetalEnable;
283
286+ (BOOL)setBaiduMapSDKOverlayNewVersionEnable:(BOOL)newVersionEnable;
287
290+ (BOOL)getBaiduMapSDKOverlayNewVersionEnable;
291
298- (BOOL)setCustomTrafficColorForSmooth:(UIColor *)smooth
299 slow:(UIColor *)slow
300 congestion:(UIColor *)congestion
301 severeCongestion:(UIColor *)severeCongestion;
302
304- (void)viewWillAppear;
305
307- (void)viewWillDisappear;
308
310- (void)cleanCacheWithMapType:(BMKMapType)type;
311
313- (void)mapForceRefresh;
314
317- (BOOL)zoomIn;
318
321- (BOOL)zoomOut;
322
324- (BMKCoordinateRegion)regionThatFits:(BMKCoordinateRegion)region __deprecated_msg("此方法已废弃");
325
329- (void)setRegion:(BMKCoordinateRegion)region animated:(BOOL)animated;
330
334- (void)setCenterCoordinate:(CLLocationCoordinate2D)coordinate animated:(BOOL)animated;
335
340- (nullable UIImage *)takeSnapshot;
341
346- (nullable UIImage *)takeSnapshot:(CGRect)rect;
347
350- (void)setCompassImage:(UIImage *)image;
351
355- (void)setVisibleMapRect:(BMKMapRect)mapRect animated:(BOOL)animate;
356
358- (BMKMapRect)mapRectThatFits:(BMKMapRect)mapRect __deprecated_msg("此方法已废弃");
359
364- (void)setVisibleMapRect:(BMKMapRect)mapRect edgePadding:(UIEdgeInsets)insets animated:(BOOL)animate;
365
370- (void)fitVisibleMapRect:(BMKMapRect)mapRect edgePadding:(UIEdgeInsets)insets withAnimated:(BOOL)animate;
371
376- (BMKMapRect)mapRectThatFits:(BMKMapRect)mapRect edgePadding:(UIEdgeInsets)insets;
377
382- (CGPoint)convertCoordinate:(CLLocationCoordinate2D)coordinate toPointToView:(UIView *)view;
383
388- (CLLocationCoordinate2D)convertPoint:(CGPoint)point toCoordinateFromView:(UIView *)view;
389
394- (CGRect)convertRegion:(BMKCoordinateRegion)region toRectToView:(UIView *)view;
395
400- (BMKCoordinateRegion)convertRect:(CGRect)rect toRegionFromView:(UIView *)view;
401
406- (CGRect)convertMapRect:(BMKMapRect)mapRect toRectToView:(UIView *)view;
407
412- (BMKMapRect)convertRect:(CGRect)rect toMapRectFromView:(UIView *)view;
413
417- (CGPoint)screenPointFromMapPoint3:(BMKMapPoint3)mapPoint3;
418
422- (CGPoint)glPointForMapPoint:(BMKMapPoint)mapPoint;
423
428- (CGPoint *)glPointsForMapPoints:(BMKMapPoint *)mapPoints count:(NSUInteger)count;
429
430
433- (void)setMapCenterToScreenPt:(CGPoint)ptInScreen;
434
439- (BMKMapStatus *)getMapStatusFromCoordinateRegion:(BMKCoordinateRegion)region edgePadding:(UIEdgeInsets)insets;
440
443- (BMKMapStatus *)getMapStatus;
444
447- (void)setMapStatus:(BMKMapStatus *)mapStatus;
448
452- (void)setMapStatus:(BMKMapStatus *)mapStatus withAnimation:(BOOL)bAnimation;
453
458- (void)setMapStatus:(BMKMapStatus *)mapStatus withAnimation:(BOOL)bAnimation withAnimationTime:(int)ulDuration;
459
462- (BOOL)isSurpportBaiduHeatMap;
463
467- (float *)getProjectionMatrix;
468
472- (float *)getViewMatrix;
473
475- (void)touchesBegan:(NSSet<BMKMapTouch *> *)touches;
476- (void)touchesMoved:(NSSet<BMKMapTouch *> *)touches;
477- (void)touchesEnded:(NSSet<BMKMapTouch *> *)touches;
478- (void)touchesCancelled:(NSSet<BMKMapTouch *> *)touches;
479@end
480
481@interface BMKMapView (CustomMapAPI)
482
486- (BOOL)setCustomMapStylePath:(NSString *)customMapStyleFilePath;
487
492- (BOOL)setCustomMapStylePath:(NSString *)customMapStyleFilePath mode:(int)mode;
493
497- (BOOL)setCustomMapStyleEnable:(BOOL)enable;
498
511- (BOOL)setCustomMapStyleWithOption:(BMKCustomMapStyleOption *)option
512 preLoad:(void (^ _Nullable)(NSString * _Nullable path))preLoad
513 success:(void (^ _Nullable)(NSString * path))success
514 failure:(void (^ _Nullable)(NSError * error, NSString * _Nullable path))failure;
515
516
517@end
518
519@interface BMKMapView (IndoorMapAPI)
520
522@property (nonatomic, assign) BOOL baseIndoorMapEnabled;
523
525@property (nonatomic, assign) BOOL showIndoorMapPoi;
526
531- (BMKSwitchIndoorFloorError)switchBaseIndoorMapFloor:(NSString *)strFloor withID:(NSString *)strID;
532
535- (nullable BMKBaseIndoorMapInfo *)getFocusedBaseIndoorMapInfo;
536
537@end
538
539@interface BMKMapView (LocationViewAPI)
540
542@property (nonatomic, assign) BOOL showsUserLocation;
543
545@property (nonatomic, assign) BMKUserTrackingMode userTrackingMode;
546
548@property (nonatomic, readonly, getter = isUserLocationVisible) BOOL userLocationVisible;
549
552- (void)updateLocationViewWithParam:(BMKLocationViewDisplayParam *)locationViewDisplayParam;
553
556- (void)updateLocationData:(BMKUserLocation *)userLocation;
557@end
558
559@interface BMKMapView (AnnotationAPI)
560
562@property (nonatomic, copy, readonly, nullable) NSArray<id <BMKAnnotation>> *annotations;
563
565@property (nonatomic, assign) BOOL isSelectedAnnotationViewFront;
566
569- (void)addAnnotation:(id <BMKAnnotation>)annotation;
570
573- (void)addAnnotations:(NSArray<id <BMKAnnotation>> *)annotations;
574
577- (void)removeAnnotation:(id <BMKAnnotation>)annotation;
578
581- (void)removeAnnotations:(NSArray<id <BMKAnnotation> > *)annotations;
582
586- (nullable BMKAnnotationView *)viewForAnnotation:(id <BMKAnnotation>)annotation;
587
591- (nullable BMKAnnotationView *)dequeueReusableAnnotationViewWithIdentifier:(NSString *)identifier;
592
596- (void)selectAnnotation:(id <BMKAnnotation>)annotation animated:(BOOL)animated;
597
601- (void)deselectAnnotation:(id <BMKAnnotation>)annotation animated:(BOOL)animated;
602
607- (void)showAnnotations:(NSArray<id <BMKAnnotation>> *)annotations animated:(BOOL)animated;
608
616- (void)showAnnotations:(NSArray<id <BMKAnnotation>> *)annotations padding:(UIEdgeInsets)padding animated:(BOOL)animated;
617
620- (nullable NSArray<id <BMKAnnotation>> *)annotationsInCoordinateBounds:(BMKCoordinateBounds)bounds;
621
622@end
623
625@interface BMKMapView (OverlaysAPI)
626
629- (void)addOverlay:(id <BMKOverlay>)overlay;
630
633- (void)addOverlays:(NSArray<id <BMKOverlay>> *)overlays;
634
637- (void)removeOverlay:(id <BMKOverlay>)overlay;
638
641- (void)removeOverlays:(NSArray<id <BMKOverlay>> *)overlays;
642
646- (void)insertOverlay:(id <BMKOverlay>)overlay atIndex:(NSUInteger)index;
647
651- (void)exchangeOverlayAtIndex:(NSUInteger)index1 withOverlayAtIndex:(NSUInteger)index2;
652
656- (void)insertOverlay:(id <BMKOverlay>)overlay aboveOverlay:(id <BMKOverlay>)sibling;
657
661- (void)insertOverlay:(id <BMKOverlay>)overlay belowOverlay:(id <BMKOverlay>)sibling;
662
664@property (nonatomic, copy, readonly, nullable) NSArray<id <BMKOverlay>> *overlays;
665
669- (nullable BMKOverlayView *)viewForOverlay:(id <BMKOverlay>)overlay;
670
671@end
672
673@interface BMKMapView (HeatMapAPI)
674
677- (void)addHeatMap:(BMKHeatMap *)heatMap;
678
682- (void)updateHeatMap:(BMKHeatMap *)heatMap;
683
685- (void)removeHeatMap;
686
688- (void)startHeatMapFrameAnimation;
689
691- (void)stopHeatMapFrameAnimation;
692
694- (void)setHeatMapFrameAnimationIndex:(NSInteger)index;
695
696@end
697
698@interface BMKMapView (HexagonHeatMapAPI)
700@property (nonatomic, assign) BOOL showHexagonHeatMap;
702- (void)addHexagonHeatMap:(BMKHexagonHeatMap *)hexagonHeatMap;
704- (void)removeHexagonHeatMap;
705@end
706
707@interface BMKMapView (MapLayerAPI)
708
710@property (nonatomic, assign) BOOL showOperateLayer;
712@property (nonatomic, assign) BOOL showOperatePOILayer;
714@property (nonatomic, assign) BOOL showTrafficUGCLayer;
719- (BOOL)switchLayerOrder:(BMKLayerType)layer otherLayer:(BMKLayerType)otherLayer;
720
722@property (nonatomic, assign) BOOL showDEMLayer;
723
727- (BOOL)switchOverlayLayerAndNavigationLayer:(BOOL)isSwitch;
728
734- (BOOL)switchOverlayLayerAndPOILayer:(BOOL)isSwitch;
735
738- (BOOL)getPoiTagEnable:(BMKPoiTagType)poiTagType;
739
743- (void)setPoiTagEnable:(BOOL)enable poiTagType:(BMKPoiTagType)poiTagType;
744@end
745
746@interface BMKMapView (ParticleEffect)
753- (BOOL)showParticleEffect:(BMKMapParticleEffect)effect;
754
760- (void)closeParticleEffect:(BMKMapParticleEffect)effect;
761
768- (BOOL)customParticleEffect:(BMKMapParticleEffect)effect option:(BMKParticleEffectOption *)option;
769@end
770
772@protocol BMKMapViewDelegate <NSObject>
773@optional
774
778- (void)mapViewWillBackground:(BMKMapView *)mapView;
779
783- (void)mapViewDidForeground:(BMKMapView *)mapView;
784
787- (void)mapViewDidFinishLoading:(BMKMapView *)mapView;
788
792- (void)mapViewDidRenderValidData:(BMKMapView *)mapView withError:(NSError *)error;
793
796- (void)mapViewDidFinishRendering:(BMKMapView *)mapView;
797
801- (void)mapView:(BMKMapView *)mapView onDrawMapFrame:(BMKMapStatus *)status;
802
806- (void)mapView:(BMKMapView *)mapView regionWillChangeAnimated:(BOOL)animated;
807
812- (void)mapView:(BMKMapView *)mapView regionWillChangeAnimated:(BOOL)animated reason:(BMKRegionChangeReason)reason;
813
817- (void)mapView:(BMKMapView *)mapView regionDidChangeAnimated:(BOOL)animated;
818
823- (void)mapView:(BMKMapView *)mapView regionDidChangeAnimated:(BOOL)animated reason:(BMKRegionChangeReason)reason;
824
829- (nullable __kindof BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation;
830
834- (void)mapView:(BMKMapView *)mapView didAddAnnotationViews:(NSArray *)views;
835
840- (void)mapView:(BMKMapView *)mapView clickAnnotationView:(BMKAnnotationView *)view;
841
847- (void)mapView:(BMKMapView *)mapView didSelectAnnotationView:(BMKAnnotationView *)view;
848
852- (void)mapView:(BMKMapView *)mapView didDeselectAnnotationView:(BMKAnnotationView *)view;
853
859- (void)mapView:(BMKMapView *)mapView annotationView:(BMKAnnotationView *)view didChangeDragState:(BMKAnnotationViewDragState)newState
860 fromOldState:(BMKAnnotationViewDragState)oldState;
861
865- (void)mapView:(BMKMapView *)mapView annotationViewForBubble:(BMKAnnotationView *)view;
866
871- (nullable __kindof BMKOverlayView *)mapView:(BMKMapView *)mapView viewForOverlay:(id <BMKOverlay>)overlay;
872
876- (void)mapView:(BMKMapView *)mapView didAddOverlayViews:(NSArray *)overlayViews;
877
881- (void)mapView:(BMKMapView *)mapView onClickedBMKOverlayView:(BMKOverlayView *)overlayView;
882
886- (void)mapView:(BMKMapView *)mapView onClickedMapPoi:(BMKMapPoi *)mapPoi;
887
891- (void)mapView:(BMKMapView *)mapView onClickedMapBlank:(CLLocationCoordinate2D)coordinate;
892
896- (void)mapview:(BMKMapView *)mapView onDoubleClick:(CLLocationCoordinate2D)coordinate;
897
901- (void)mapview:(BMKMapView *)mapView onLongClick:(CLLocationCoordinate2D)coordinate;
902
908- (void)mapview:(BMKMapView *)mapView onForceTouch:(CLLocationCoordinate2D)coordinate force:(CGFloat)force maximumPossibleForce:(CGFloat)maximumPossibleForce;
909
912- (void)mapStatusDidChanged:(BMKMapView *)mapView;
913
918- (void)mapview:(BMKMapView *)mapView baseIndoorMapWithIn:(BOOL)flag baseIndoorMapInfo:(nullable BMKBaseIndoorMapInfo *)info;
919
923- (void)mapView:(BMKMapView *)mapView didChangeUserTrackingMode:(BMKUserTrackingMode)mode;
924
925@end
926NS_ASSUME_NONNULL_END
NSUInteger BMKAnnotationViewDragState
Definition BMKAnnotationView.h:22
BMKSwitchIndoorFloorError
枚举:室内图切换楼层结果
Definition BMKMapView.h:69
@ BMKSwitchIndoorFloorFailed
切换楼层成功
Definition BMKMapView.h:71
@ BMKSwitchIndoorFloorSuccess
Definition BMKMapView.h:70
@ BMKSwitchIndoorFloorNotFocused
切换楼层失败
Definition BMKMapView.h:72
@ BMKSwitchIndoorFloorNotExist
地图还未聚焦到传入的室内图
Definition BMKMapView.h:73
BMKLogoPosition
枚举:logo位置
Definition BMKMapView.h:59
@ BMKLogoPositionCenterTop
地图中下方
Definition BMKMapView.h:63
@ BMKLogoPositionCenterBottom
地图左上方
Definition BMKMapView.h:62
@ BMKLogoPositionRightTop
地图右下方
Definition BMKMapView.h:65
@ BMKLogoPositionLeftBottom
Definition BMKMapView.h:60
@ BMKLogoPositionLeftTop
地图左下方
Definition BMKMapView.h:61
@ BMKLogoPositionRightBottom
地图中上方
Definition BMKMapView.h:64
BMKMapParticleEffect
枚举:粒子效果
Definition BMKMapView.h:89
@ BMKMapParticleEffectSnow
Definition BMKMapView.h:91
@ BMKMapParticleEffectFlower
Definition BMKMapView.h:96
@ BMKMapParticleEffectFireworks
Definition BMKMapView.h:95
@ BMKMapParticleEffectRainStorm
Definition BMKMapView.h:92
@ BMKMapParticleEffectUnknow
Definition BMKMapView.h:90
@ BMKMapParticleEffectSmog
Definition BMKMapView.h:93
@ BMKMapParticleEffectSandStorm
Definition BMKMapView.h:94
BMKUserTrackingMode
Definition BMKMapView.h:51
@ BMKUserTrackingModeNone
Definition BMKMapView.h:52
@ BMKUserTrackingModeFollowWithHeading
定位跟随模式
Definition BMKMapView.h:55
@ BMKUserTrackingModeFollow
定位方向模式
Definition BMKMapView.h:54
@ BMKUserTrackingModeHeading
普通定位模式
Definition BMKMapView.h:53
BMKTrafficUGCType
Definition BMKMapView.h:28
@ BMKTrafficUGCTypeBlocking
道路拥堵
Definition BMKMapView.h:32
@ BMKTrafficUGCTypeNoUGC
Definition BMKMapView.h:29
@ BMKTrafficUGCTypeConstruction
非路况事件
Definition BMKMapView.h:30
@ BMKTrafficUGCTypeEmergency
道路封闭
Definition BMKMapView.h:33
@ BMKTrafficUGCTypeJam
道路施工
Definition BMKMapView.h:31
BMKLayerType
Definition BMKMapView.h:108
@ kBMKLayerSDKHeatMap
SDK覆盖物图层
Definition BMKMapView.h:110
@ kBMKLayerNewSDKDefaultOverlay
SDK蜂窝热力图图层
Definition BMKMapView.h:112
@ kBMKLayerSDKHexagonHeatMap
SDK热力图图层
Definition BMKMapView.h:111
@ kBMKLayerSDKOverlay
Definition BMKMapView.h:109
BMKPoiTagType
用于控制poi标签显示的类别枚举
Definition BMKMapView.h:101
@ kBMKPoiTagTypeShop
店铺标签
Definition BMKMapView.h:105
@ kBMKPoiTagTypeTravel
旅游出行标签
Definition BMKMapView.h:104
@ kBMKPoiTagTypeAll
显示poi标签 / 屏蔽所有poi标签
Definition BMKMapView.h:102
@ kBMKPoiTagTypeEpidemic
疫情标签
Definition BMKMapView.h:103
BMKRegionChangeReason
枚举:地图区域改变原因
Definition BMKMapView.h:77
@ BMKRegionChangeReasonGesture
Definition BMKMapView.h:78
@ BMKRegionChangeReasonAPIs
地图上控件事件,如点击指南针返回2D地图。
Definition BMKMapView.h:80
@ BMKRegionChangeReasonEvent
手势触发导致地图区域变化,如双击、拖拽、滑动地图
Definition BMKMapView.h:79
BMKMapLanguageType
Definition BMKMapView.h:83
@ kBMKMapLanguageTypeChinese
Definition BMKMapView.h:84
@ kBMKMapLanguageTypeEnglish
中文地图
Definition BMKMapView.h:85
Definition BMKAnnotationView.h:43
此类表示室内图基础信息
Definition BMKBaseIndoorMapInfo.h:16
Definition BMKCustomMapStyleOption.h:13
热力图的绘制数据和显示样式类
Definition BMKHeatMap.h:35
蜂窝热力图的绘制数据和显示样式类
Definition BMKHexagonHeatMap.h:32
此类表示定位图层自定义样式参数
Definition BMKLocationViewDisplayParam.h:24
点击地图标注返回数据结构
Definition BMKMapView.h:37
BMKTrafficUGCType trafficUGCType
Poi点路况信息
Definition BMKMapView.h:48
NSString * text
点标注的名称
Definition BMKMapView.h:39
CLLocationCoordinate2D pt
点标注的经纬度坐标
Definition BMKMapView.h:42
NSString * uid
点标注的uid,可能为空
Definition BMKMapView.h:45
此类表示地图状态信息
Definition BMKMapStatus.h:16
Definition BMKMapTouch.h:14
地图View类,使用此View可以显示地图窗口,并且对地图进行相关的操作
Definition BMKMapView.h:118
该类是地图覆盖物View的基类,提供绘制overlay的接口但本身并无实现,所有地图覆盖物View需要继承自此类
Definition BMKOverlayView.h:15
Definition BMKParticleEffectOption.h:15
Definition BMKUserLocation.h:14
表示一个经纬度区域
Definition BMKTypes.h:192
表示一个经纬度区域
Definition BMKTypes.h:199
三维地理坐标点,用空间坐标表示
Definition BMKTypes.h:248
地理坐标点,用直角地理坐标表示
Definition BMKTypes.h:222
矩形,用直角地理坐标表示
Definition BMKTypes.h:278