TencentMapSDK_iOS_3D_v6.8.0
载入中...
搜索中...
未找到
QBasicMapViewLayer.h
1//
2// QBasicMapViewLayer.h
3// QMapKit
4//
5// Created by tabsong on 17/5/16.
6// Copyright © 2017年 tencent. All rights reserved.
7//
8
9#import <QuartzCore/QuartzCore.h>
10#import "QGeometry.h"
11
15extern NSString *const kQBasicMapViewLayerCenterCoordinateKey;
16
20extern NSString *const kQBasicMapViewLayerZoomLevelKey;
21
25extern NSString *const kQBasicMapViewLayerRotationKey;
26
30extern NSString *const kQBasicMapViewLayerOverlookingKey;
31
32
36@interface QBasicMapViewLayer : CALayer
37
43@property (nonatomic, assign) CGPoint centerCoordinate;
44
48@property (nonatomic, assign) CGFloat zoomLevel;
49
53@property (nonatomic, assign) CGFloat rotation;
54
58@property (nonatomic, assign) CGFloat overlooking;
59
60@end
执行地图动画对应的layer.
定义 QBasicMapViewLayer.h:37
CGFloat rotation
旋转角度, Animatable
定义 QBasicMapViewLayer.h:53
CGFloat zoomLevel
缩放级别, Animatable
定义 QBasicMapViewLayer.h:48
CGFloat overlooking
overlooking, Animatable
定义 QBasicMapViewLayer.h:58
CGPoint centerCoordinate
中心点, Animatable x 表示 latitude y 表示 longitude
定义 QBasicMapViewLayer.h:43