-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindex.d.ts
76 lines (66 loc) · 2.72 KB
/
index.d.ts
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
import { MapMouseEvent } from "mapbox-gl";
import type GeoJSONFeature from "mapbox-gl/src/util/vectortile_to_geojson";
import { LayerSpecification } from "mapbox-gl/src/style-spec/types";
import { PureComponent } from "react";
type InteractionEvent = MapMouseEvent & { features?: GeoJSONFeature[] };
type Props = LayerSpecification & {
/** Mapbox GL Layer id */
id: string;
/** The id of an existing layer to insert the new layer before. */
before?: string;
/**
* Called when the layer is clicked.
* @callback
* @param {Object} event - The mouse event.
* @param {[Number, Number]} event.lngLat - The coordinates of the pointer
* @param {Array} event.features - The features under the pointer,
* using Mapbox's queryRenderedFeatures API:
* https://www.mapbox.com/mapbox-gl-js/api/#Map#queryRenderedFeatures
*/
onClick?: (event: InteractionEvent) => void;
/**
* Called when the layer is hovered over.
* @callback
* @param {Object} event - The mouse event.
* @param {[Number, Number]} event.lngLat - The coordinates of the pointer
* @param {Array} event.features - The features under the pointer,
* using Mapbox's queryRenderedFeatures API:
* https://www.mapbox.com/mapbox-gl-js/api/#Map#queryRenderedFeatures
*/
onHover?: (event: InteractionEvent) => void;
/**
* Called when the layer feature is entered.
* @callback
* @param {Object} event - The mouse event.
* @param {[Number, Number]} event.lngLat - The coordinates of the pointer
* @param {Array} event.features - The features under the pointer,
* using Mapbox's queryRenderedFeatures API:
* https://www.mapbox.com/mapbox-gl-js/api/#Map#queryRenderedFeatures
*/
onEnter?: (event: InteractionEvent) => void;
/**
* Called when the layer feature is leaved.
* @callback
* @param {Object} event - The mouse event.
* @param {[Number, Number]} event.lngLat - The coordinates of the pointer
* @param {Array} event.features - The features under the pointer,
* using Mapbox's queryRenderedFeatures API:
* https://www.mapbox.com/mapbox-gl-js/api/#Map#queryRenderedFeatures
*/
onLeave?: (event: InteractionEvent) => void;
/**
* Called when the layer is right-clicked.
* @callback
* @param {Object} event - The mouse event.
* @param {[Number, Number]} event.lngLat - The coordinates of the pointer
* @param {Array} event.features - The features under the pointer,
* using Mapbox's queryRenderedFeatures API:
* https://www.mapbox.com/mapbox-gl-js/api/#Map#queryRenderedFeatures
*/
onContextMenu?: (event: InteractionEvent) => void;
/**
* Radius to detect features around a clicked/hovered point
*/
radius?: number;
};
export default class Layer extends PureComponent<Props> {}