-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathMapView.js
204 lines (167 loc) · 3.73 KB
/
MapView.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
// @flow
import React, {PropTypes} from 'react'
import {requireNativeComponent, ViewPropTypes} from 'react-native'
import {LatLng, Region} from '../PropTypes'
import BaseComponent from '../BaseComponent'
type Target = {
zoomLevel?: number,
coordinate?: LatLng,
titl?: number,
rotation?: number,
}
export default class MapView extends BaseComponent {
static propTypes = {
...ViewPropTypes,
/**
* 地图类型
*
* - standard: 标准地图
* - satellite: 卫星地图
* - navigation: 导航地图
* - night: 夜间地图
* - bus: 公交地图
*/
mapType: PropTypes.oneOf(['standard', 'satellite', 'navigation', 'night', 'bus']),
/**
* 是否启用定位
*/
locationEnabled: PropTypes.bool,
/**
* 定位间隔(ms),默认 2000
*
* @platform android
*/
locationInterval: PropTypes.number,
/**
* 定位的最小更新距离
*
* @platform ios
*/
distanceFilter: PropTypes.number,
/**
* 是否显示室内地图
*/
showsIndoorMap: PropTypes.bool,
/**
* 是否显示室内地图楼层切换控件
*
* TODO: 似乎并不能正常显示
*/
showsIndoorSwitch: PropTypes.bool,
/**
* 是否显示3D建筑
*/
showsBuildings: PropTypes.bool,
/**
* 是否显示文本标签
*/
showsLabels: PropTypes.bool,
/**
* 是否显示指南针
*/
showsCompass: PropTypes.bool,
/**
* 是否显示放大缩小按钮
*
* @platform android
*/
showsZoomControls: PropTypes.bool,
/**
* 是否显示比例尺
*/
showsScale: PropTypes.bool,
/**
* 是否显示定位按钮
*
* @platform android
*/
showsLocationButton: PropTypes.bool,
/**
* 是否显示路况
*/
showsTraffic: PropTypes.bool,
/**
* 最大缩放级别
*/
maxZoomLevel: PropTypes.number,
/**
* 最小缩放级别
*/
minZoomLevel: PropTypes.number,
/**
* 当前缩放级别,取值范围 [3, 20]
*/
zoomLevel: PropTypes.number,
/**
* 中心坐标
*/
coordinate: LatLng,
/**
* 显示区域
*/
region: Region,
/**
* 限制地图只能显示某个矩形区域
*/
limitRegion: Region,
/**
* 倾斜角度,取值范围 [0, 60]
*/
tilt: PropTypes.number,
/**
* 是否启用缩放手势,用于放大缩小
*/
zoomEnabled: PropTypes.bool,
/**
* 是否启用滑动手势,用于平移
*/
scrollEnabled: PropTypes.bool,
/**
* 是否启用旋转手势,用于调整方向
*/
rotateEnabled: PropTypes.bool,
/**
* 是否启用倾斜手势,用于改变视角
*/
tiltEnabled: PropTypes.bool,
/**
* 点击事件
*/
onPress: React.PropTypes.func,
/**
* 长按事件
*/
onLongPress: React.PropTypes.func,
/**
* 定位事件
*/
onLocation: React.PropTypes.func,
/**
* 动画完成事件
*/
onAnimateFinish: React.PropTypes.func,
/**
* 动画取消事件
*/
onAnimateCancel: React.PropTypes.func,
/**
* 地图状态变化事件
*/
onStatusChange: React.PropTypes.func,
/**
* 地图状态变化完成事件
*/
onStatusChangeComplete: React.PropTypes.func,
}
/**
* 动画过渡到某个状态(坐标、缩放级别、倾斜度、旋转角度)
*/
animateTo(target: Target, duration?: number = 500) {
this._sendCommand('animateTo', [target, duration])
}
render() {
return <AMapView {...this.props}/>
}
name = 'AMapView'
}
const AMapView = requireNativeComponent('AMapView', MapView)