forked from mapbox/mapbox-gl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentation.yml
71 lines (71 loc) · 1.85 KB
/
documentation.yml
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
toc:
- Map
- accessToken
- supported
- version
- name: Geography
description: |
These are Mapbox GL JS's ways of representing locations
and areas on the sphere.
- LngLat
- LngLatBounds
- name: Controls
description: |
Controls add new functionality and user interface
elements to the map.
- NavigationControl
- GeolocateControl
- AttributionControl
- ScaleControl
- name: Handlers
description: |
Handlers add different kinds of interactivity to the map -
mouse interactivity, touch interactions, and other
gestures.
- BoxZoomHandler
- ScrollZoomHandler
- DragPanHandler
- DragRotateHandler
- KeyboardHandler
- DoubleClickZoomHandler
- TouchZoomRotateHandler
- name: Sources
description: |
Sources specify the geographic features to be rendered on the map. Source
objects may be obtained from `Map#getSource`.
- GeoJSONSource
- VideoSource
- ImageSource
- name: Options
description: |
These shared option can be supplied as arguments to various methods
on a Map object and other functions.
- CameraOptions
- AnimationOptions
- StyleOptions
- name: Overlays
- Popup
- Marker
- name: Events
description: |
This event functionality is used by Mapbox GL JS itself
and can be useful to other developers who want to create
[IControls](#IControl) or other extensions.
- Evented
- MapMouseEvent
- MapTouchEvent
- MapBoxZoomEvent
- MapDataEvent
- name: Types
description: |
These are types used in the documentation above to describe arguments,
properties, and return values.
- LngLatLike
- LngLatBoundsLike
- Point
- PointLike
- name: Interfaces
description: |
Interfaces are specifications for plugin authors to follow in order to
create new extensions to Mapbox GL JS
- IControl