1
|
4
|
export const alias = {
|
2
|
|
id: 'id',
|
3
|
|
style: 'style',
|
4
|
|
animation: 'animation',
|
5
|
|
className: 'class',
|
6
|
|
latitude: 'latitude',
|
7
|
|
longitude: 'longitude',
|
8
|
|
scale: 'scale',
|
9
|
|
markers: 'markers',
|
10
|
|
polyline: 'polyline',
|
11
|
|
circles: 'circles',
|
12
|
|
controls: 'controls',
|
13
|
|
polygons: 'polygons',
|
14
|
|
showLocation: 'show-location',
|
15
|
|
includePoints: 'include-points',
|
16
|
|
includePadding: 'include-padding',
|
17
|
|
groundOverlays: 'ground-overlays',
|
18
|
|
tileOverlay: 'tile-overlay',
|
19
|
|
setting: 'setting',
|
20
|
|
covers: 'covers',
|
21
|
|
subkey: 'subkey',
|
22
|
|
layerStyle: 'layer-style',
|
23
|
|
rotate: 'rotate',
|
24
|
|
skew: 'skew',
|
25
|
|
enable3D: 'enable-3D',
|
26
|
|
showCompass: 'show-compass',
|
27
|
|
showScale: 'show-scale',
|
28
|
|
enableOverlooking: 'enable-overlooking',
|
29
|
|
enableZoom: 'enable-zoom',
|
30
|
|
enableScroll: 'enable-scroll',
|
31
|
|
enableRotate: 'enable-rotate',
|
32
|
|
enableSatellite: 'enable-satellite',
|
33
|
|
enableTraffic: 'enable-traffic',
|
34
|
|
onTap: 'bindtap',
|
35
|
|
onClick: 'bindtap',
|
36
|
|
onMarkerTap: 'bindmarkertap',
|
37
|
|
onMarkerClick: 'bindmarkertap',
|
38
|
|
onControlTap: 'bindcontroltap',
|
39
|
|
onControlClick: 'bindcontroltap',
|
40
|
|
onCalloutTap: 'bindcallouttap',
|
41
|
|
onCalloutClick: 'bindcallouttap',
|
42
|
|
onUpdated: 'bindupdated',
|
43
|
|
onRegionChange: 'bindregionchange',
|
44
|
|
onPoiTap: 'bindpoitap',
|
45
|
|
onPoiClick: 'bindpoitap',
|
46
|
|
};
|
47
|
|
|
48
|
4
|
export const props = Object.values(alias);
|