mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
format definitions and test file (#43443)
This commit is contained in:
parent
5d691af616
commit
fece3c6827
330
types/mapbox-gl/index.d.ts
vendored
330
types/mapbox-gl/index.d.ts
vendored
@ -30,7 +30,7 @@ declare namespace mapboxgl {
|
||||
/**
|
||||
* Maximum number of images (raster tiles, sprites, icons) to load in parallel, which affects performance in raster-heavy maps.
|
||||
* 16 by default.
|
||||
*/
|
||||
*/
|
||||
let maxParallelImageRequests: number;
|
||||
|
||||
export function supported(options?: { failIfMajorPerformanceCaveat?: boolean }): boolean;
|
||||
@ -46,37 +46,108 @@ declare namespace mapboxgl {
|
||||
|
||||
type PluginStatus = 'unavailable' | 'loading' | 'loaded' | 'error';
|
||||
|
||||
type LngLatLike = LngLat | { lng: number; lat: number; } | { lon: number; lat: number; } | [number, number];
|
||||
type LngLatLike = LngLat | { lng: number; lat: number } | { lon: number; lat: number } | [number, number];
|
||||
type LngLatBoundsLike = LngLatBounds | [LngLatLike, LngLatLike] | [number, number, number, number];
|
||||
type PointLike = Point | [number, number];
|
||||
|
||||
type ExpressionName =
|
||||
// Types
|
||||
| 'array' | 'boolean' | 'collator' | 'format' | 'literal' | 'number' | 'object' | 'string'
|
||||
| 'to-boolean' | 'to-color' | 'to-number' | 'to-string' | 'typeof'
|
||||
| 'array'
|
||||
| 'boolean'
|
||||
| 'collator'
|
||||
| 'format'
|
||||
| 'literal'
|
||||
| 'number'
|
||||
| 'object'
|
||||
| 'string'
|
||||
| 'to-boolean'
|
||||
| 'to-color'
|
||||
| 'to-number'
|
||||
| 'to-string'
|
||||
| 'typeof'
|
||||
// Feature data
|
||||
| 'feature-state' | 'geometry-type' | 'id' | 'line-progress' | 'properties'
|
||||
| 'feature-state'
|
||||
| 'geometry-type'
|
||||
| 'id'
|
||||
| 'line-progress'
|
||||
| 'properties'
|
||||
// Lookup
|
||||
| 'at' | 'get' | 'has' | 'length'
|
||||
| 'at'
|
||||
| 'get'
|
||||
| 'has'
|
||||
| 'length'
|
||||
// Decision
|
||||
| '!' | '!=' | '<' | '<=' | '==' | '>' | '>=' | 'all' | 'any' | 'case' | 'match' | 'coalesce'
|
||||
| '!'
|
||||
| '!='
|
||||
| '<'
|
||||
| '<='
|
||||
| '=='
|
||||
| '>'
|
||||
| '>='
|
||||
| 'all'
|
||||
| 'any'
|
||||
| 'case'
|
||||
| 'match'
|
||||
| 'coalesce'
|
||||
// Ramps, scales, curves
|
||||
| 'interpolate' | 'interpolate-hcl' | 'interpolate-lab' | 'step'
|
||||
| 'interpolate'
|
||||
| 'interpolate-hcl'
|
||||
| 'interpolate-lab'
|
||||
| 'step'
|
||||
// Variable binding
|
||||
| 'let' | 'var'
|
||||
| 'let'
|
||||
| 'var'
|
||||
// String
|
||||
| 'concat' | 'downcase' | 'is-supported-script' | 'resolved-locale' | 'upcase'
|
||||
| 'concat'
|
||||
| 'downcase'
|
||||
| 'is-supported-script'
|
||||
| 'resolved-locale'
|
||||
| 'upcase'
|
||||
// Color
|
||||
| 'rgb' | 'rgba'
|
||||
| 'rgb'
|
||||
| 'rgba'
|
||||
// Math
|
||||
| '-' | '*' | '/' | '%' | '^' | '+' | 'abs' | 'acos' | 'asin' | 'atan' | 'ceil' | 'cos' | 'e'
|
||||
| 'floor' | 'ln' | 'ln2' | 'log10' | 'log2' | 'max' | 'min' | 'pi' | 'round' | 'sin' | 'sqrt' | 'tan'
|
||||
| '-'
|
||||
| '*'
|
||||
| '/'
|
||||
| '%'
|
||||
| '^'
|
||||
| '+'
|
||||
| 'abs'
|
||||
| 'acos'
|
||||
| 'asin'
|
||||
| 'atan'
|
||||
| 'ceil'
|
||||
| 'cos'
|
||||
| 'e'
|
||||
| 'floor'
|
||||
| 'ln'
|
||||
| 'ln2'
|
||||
| 'log10'
|
||||
| 'log2'
|
||||
| 'max'
|
||||
| 'min'
|
||||
| 'pi'
|
||||
| 'round'
|
||||
| 'sin'
|
||||
| 'sqrt'
|
||||
| 'tan'
|
||||
// Zoom, Heatmap
|
||||
| 'zoom' | 'heatmap-density';
|
||||
| 'zoom'
|
||||
| 'heatmap-density';
|
||||
|
||||
type Expression = [ExpressionName, ...any[]]
|
||||
type Expression = [ExpressionName, ...any[]];
|
||||
|
||||
type Anchor = 'center' | 'left' | 'right' | 'top' | 'bottom' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
||||
type Anchor =
|
||||
| 'center'
|
||||
| 'left'
|
||||
| 'right'
|
||||
| 'top'
|
||||
| 'bottom'
|
||||
| 'top-left'
|
||||
| 'top-right'
|
||||
| 'bottom-left'
|
||||
| 'bottom-right';
|
||||
|
||||
/**
|
||||
* Map
|
||||
@ -84,7 +155,10 @@ declare namespace mapboxgl {
|
||||
export class Map extends Evented {
|
||||
constructor(options?: MapboxOptions);
|
||||
|
||||
addControl(control: Control | IControl, position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'): this;
|
||||
addControl(
|
||||
control: Control | IControl,
|
||||
position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left',
|
||||
): this;
|
||||
|
||||
removeControl(control: Control | IControl): this;
|
||||
|
||||
@ -140,7 +214,10 @@ declare namespace mapboxgl {
|
||||
* @param pointOrBox The geometry of the query region: either a single point or southwest and northeast points describing a bounding box. Omitting this parameter (i.e. calling Map#queryRenderedFeatures with zero arguments, or with only a options argument) is equivalent to passing a bounding box encompassing the entire map viewport.
|
||||
* @param options
|
||||
*/
|
||||
queryRenderedFeatures(pointOrBox?: PointLike | [PointLike, PointLike], options?: { layers?: string[], filter?: any[], validate?: boolean }): MapboxGeoJSONFeature[];
|
||||
queryRenderedFeatures(
|
||||
pointOrBox?: PointLike | [PointLike, PointLike],
|
||||
options?: { layers?: string[]; filter?: any[]; validate?: boolean },
|
||||
): MapboxGeoJSONFeature[];
|
||||
|
||||
/**
|
||||
* Returns an array of GeoJSON Feature objects representing features within the specified vector tile or GeoJSON source that satisfy the query parameters.
|
||||
@ -158,10 +235,10 @@ declare namespace mapboxgl {
|
||||
sourceLayer?: string;
|
||||
filter?: any[];
|
||||
validate?: boolean;
|
||||
}
|
||||
},
|
||||
): MapboxGeoJSONFeature[];
|
||||
|
||||
setStyle(style: mapboxgl.Style | string, options?: { diff?: boolean, localIdeographFontFamily?: string }): this;
|
||||
setStyle(style: mapboxgl.Style | string, options?: { diff?: boolean; localIdeographFontFamily?: string }): this;
|
||||
|
||||
getStyle(): mapboxgl.Style;
|
||||
|
||||
@ -177,7 +254,15 @@ declare namespace mapboxgl {
|
||||
|
||||
getSource(id: string): AnySourceImpl;
|
||||
|
||||
addImage(name: string, image: HTMLImageElement | ArrayBufferView | { width: number, height: number, data: Uint8Array | Uint8ClampedArray } | ImageData, options?: { pixelRatio?: number, sdf?: boolean }): this;
|
||||
addImage(
|
||||
name: string,
|
||||
image:
|
||||
| HTMLImageElement
|
||||
| ArrayBufferView
|
||||
| { width: number; height: number; data: Uint8Array | Uint8ClampedArray }
|
||||
| ImageData,
|
||||
options?: { pixelRatio?: number; sdf?: boolean },
|
||||
): this;
|
||||
|
||||
hasImage(name: string): boolean;
|
||||
|
||||
@ -213,7 +298,10 @@ declare namespace mapboxgl {
|
||||
|
||||
getLight(): mapboxgl.Light;
|
||||
|
||||
setFeatureState(feature: FeatureIdentifier | mapboxgl.MapboxGeoJSONFeature, state: { [key: string]: any }): void;
|
||||
setFeatureState(
|
||||
feature: FeatureIdentifier | mapboxgl.MapboxGeoJSONFeature,
|
||||
state: { [key: string]: any },
|
||||
): void;
|
||||
|
||||
getFeatureState(feature: FeatureIdentifier | mapboxgl.MapboxGeoJSONFeature): { [key: string]: any };
|
||||
|
||||
@ -273,7 +361,13 @@ declare namespace mapboxgl {
|
||||
|
||||
fitBounds(bounds: LngLatBoundsLike, options?: mapboxgl.FitBoundsOptions, eventData?: mapboxgl.EventData): this;
|
||||
|
||||
fitScreenCoordinates(p0: PointLike, p1: PointLike, bearing: number, options?: AnimationOptions & CameraOptions, eventData?: EventData): this;
|
||||
fitScreenCoordinates(
|
||||
p0: PointLike,
|
||||
p1: PointLike,
|
||||
bearing: number,
|
||||
options?: AnimationOptions & CameraOptions,
|
||||
eventData?: EventData,
|
||||
): this;
|
||||
|
||||
jumpTo(options: mapboxgl.CameraOptions, eventData?: mapboxgl.EventData): this;
|
||||
|
||||
@ -285,15 +379,27 @@ declare namespace mapboxgl {
|
||||
|
||||
stop(): this;
|
||||
|
||||
on<T extends keyof MapLayerEventType>(type: T, layer: string, listener: (ev: MapLayerEventType[T] & EventData) => void): this;
|
||||
on<T extends keyof MapLayerEventType>(
|
||||
type: T,
|
||||
layer: string,
|
||||
listener: (ev: MapLayerEventType[T] & EventData) => void,
|
||||
): this;
|
||||
on<T extends keyof MapEventType>(type: T, listener: (ev: MapEventType[T] & EventData) => void): this;
|
||||
on(type: string, listener: (ev: any) => void): this;
|
||||
|
||||
once<T extends keyof MapLayerEventType>(type: T, layer: string, listener: (ev: MapLayerEventType[T] & EventData) => void): this;
|
||||
once<T extends keyof MapLayerEventType>(
|
||||
type: T,
|
||||
layer: string,
|
||||
listener: (ev: MapLayerEventType[T] & EventData) => void,
|
||||
): this;
|
||||
once<T extends keyof MapEventType>(type: T, listener: (ev: MapEventType[T] & EventData) => void): this;
|
||||
once(type: string, listener: (ev: any) => void): this;
|
||||
|
||||
off<T extends keyof MapLayerEventType>(type: T, layer: string, listener: (ev: MapLayerEventType[T] & EventData) => void): this;
|
||||
off<T extends keyof MapLayerEventType>(
|
||||
type: T,
|
||||
layer: string,
|
||||
listener: (ev: MapLayerEventType[T] & EventData) => void,
|
||||
): this;
|
||||
off<T extends keyof MapEventType>(type: T, listener: (ev: MapEventType[T] & EventData) => void): this;
|
||||
off(type: string, listener: (ev: any) => void): this;
|
||||
|
||||
@ -379,11 +485,11 @@ declare namespace mapboxgl {
|
||||
doubleClickZoom?: boolean;
|
||||
|
||||
/** If `true`, the map's position (zoom, center latitude, center longitude, bearing, and pitch) will be synced with the hash fragment of the page's URL.
|
||||
* For example, `http://path/to/my/page.html#2.59/39.26/53.07/-24.1/60`.
|
||||
* An additional string may optionally be provided to indicate a parameter-styled hash,
|
||||
* e.g. http://path/to/my/page.html#map=2.59/39.26/53.07/-24.1/60&foo=bar, where foo
|
||||
* is a custom parameter and bar is an arbitrary hash distinct from the map hash.
|
||||
* */
|
||||
* For example, `http://path/to/my/page.html#2.59/39.26/53.07/-24.1/60`.
|
||||
* An additional string may optionally be provided to indicate a parameter-styled hash,
|
||||
* e.g. http://path/to/my/page.html#map=2.59/39.26/53.07/-24.1/60&foo=bar, where foo
|
||||
* is a custom parameter and bar is an arbitrary hash distinct from the map hash.
|
||||
* */
|
||||
hash?: boolean | string;
|
||||
|
||||
/**
|
||||
@ -412,7 +518,7 @@ declare namespace mapboxgl {
|
||||
* see `src/ui/default_locale.js` for an example with all supported string IDs.
|
||||
* The object may specify all UI strings (thereby adding support for a new translation) or
|
||||
* only a subset of strings (thereby patching the default translation table).
|
||||
*/
|
||||
*/
|
||||
locale?: { [key: string]: string };
|
||||
|
||||
/**
|
||||
@ -436,13 +542,13 @@ declare namespace mapboxgl {
|
||||
maxBounds?: LngLatBoundsLike;
|
||||
|
||||
/** Maximum pitch of the map */
|
||||
maxPitch?: number,
|
||||
maxPitch?: number;
|
||||
|
||||
/** Maximum zoom of the map */
|
||||
maxZoom?: number;
|
||||
|
||||
/** Minimum pitch of the map */
|
||||
minPitch?: number,
|
||||
minPitch?: number;
|
||||
|
||||
/** Minimum zoom of the map */
|
||||
minZoom?: number;
|
||||
@ -560,9 +666,9 @@ declare namespace mapboxgl {
|
||||
}
|
||||
|
||||
export interface FeatureIdentifier {
|
||||
id?: string | number,
|
||||
source: string
|
||||
sourceLayer?: string
|
||||
id?: string | number;
|
||||
source: string;
|
||||
sourceLayer?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -616,7 +722,7 @@ declare namespace mapboxgl {
|
||||
* DragRotateHandler
|
||||
*/
|
||||
export class DragRotateHandler {
|
||||
constructor(map: mapboxgl.Map, options?: { bearingSnap?: number, pitchWithRotate?: boolean });
|
||||
constructor(map: mapboxgl.Map, options?: { bearingSnap?: number; pitchWithRotate?: boolean });
|
||||
|
||||
isEnabled(): boolean;
|
||||
|
||||
@ -681,18 +787,13 @@ declare namespace mapboxgl {
|
||||
/**
|
||||
* Control
|
||||
*/
|
||||
export class Control extends Evented {
|
||||
}
|
||||
export class Control extends Evented {}
|
||||
|
||||
/**
|
||||
* Navigation
|
||||
*/
|
||||
export class NavigationControl extends Control {
|
||||
constructor(options?: {
|
||||
showCompass?: boolean;
|
||||
showZoom?: boolean;
|
||||
visualizePitch?: boolean;
|
||||
});
|
||||
constructor(options?: { showCompass?: boolean; showZoom?: boolean; visualizePitch?: boolean });
|
||||
}
|
||||
|
||||
export class PositionOptions {
|
||||
@ -705,7 +806,13 @@ declare namespace mapboxgl {
|
||||
* Geolocate
|
||||
*/
|
||||
export class GeolocateControl extends Control {
|
||||
constructor(options?: { positionOptions?: PositionOptions, fitBoundsOptions?: FitBoundsOptions, trackUserLocation?: boolean, showAccuracyCircle?: boolean, showUserLocation?: boolean });
|
||||
constructor(options?: {
|
||||
positionOptions?: PositionOptions;
|
||||
fitBoundsOptions?: FitBoundsOptions;
|
||||
trackUserLocation?: boolean;
|
||||
showAccuracyCircle?: boolean;
|
||||
showUserLocation?: boolean;
|
||||
});
|
||||
trigger(): boolean;
|
||||
}
|
||||
|
||||
@ -713,14 +820,14 @@ declare namespace mapboxgl {
|
||||
* Attribution
|
||||
*/
|
||||
export class AttributionControl extends Control {
|
||||
constructor(options?: { compact?: boolean, customAttribution?: string | string[] });
|
||||
constructor(options?: { compact?: boolean; customAttribution?: string | string[] });
|
||||
}
|
||||
|
||||
/**
|
||||
* Scale
|
||||
*/
|
||||
export class ScaleControl extends Control {
|
||||
constructor(options?: { maxWidth?: number, unit?: string })
|
||||
constructor(options?: { maxWidth?: number; unit?: string });
|
||||
|
||||
setUnit(unit: 'imperial' | 'metric' | 'nautical'): void;
|
||||
}
|
||||
@ -822,13 +929,13 @@ declare namespace mapboxgl {
|
||||
closeOnClick?: boolean;
|
||||
|
||||
/**
|
||||
* @param {boolean} [options.closeOnMove=false] If `true`, the popup will closed when the map moves.
|
||||
*/
|
||||
* @param {boolean} [options.closeOnMove=false] If `true`, the popup will closed when the map moves.
|
||||
*/
|
||||
closeOnMove?: boolean;
|
||||
|
||||
anchor?: Anchor;
|
||||
|
||||
offset?: number | PointLike | { [key: string]: PointLike; };
|
||||
offset?: number | PointLike | { [key: string]: PointLike };
|
||||
|
||||
className?: string;
|
||||
|
||||
@ -857,12 +964,12 @@ declare namespace mapboxgl {
|
||||
}
|
||||
|
||||
export interface Light {
|
||||
'anchor'?: 'map' | 'viewport';
|
||||
'position'?: number[];
|
||||
anchor?: 'map' | 'viewport';
|
||||
position?: number[];
|
||||
'position-transition'?: Transition;
|
||||
'color'?: string;
|
||||
color?: string;
|
||||
'color-transition'?: Transition;
|
||||
'intensity'?: number;
|
||||
intensity?: number;
|
||||
'intensity-transition'?: Transition;
|
||||
}
|
||||
|
||||
@ -870,11 +977,25 @@ declare namespace mapboxgl {
|
||||
[sourceName: string]: AnySourceData;
|
||||
}
|
||||
|
||||
export type PromoteIdSpecification = {[key: string]: string} | string;
|
||||
export type PromoteIdSpecification = { [key: string]: string } | string;
|
||||
|
||||
export type AnySourceData = GeoJSONSourceRaw | VideoSourceRaw | ImageSourceRaw | CanvasSourceRaw | VectorSource | RasterSource | RasterDemSource
|
||||
export type AnySourceData =
|
||||
| GeoJSONSourceRaw
|
||||
| VideoSourceRaw
|
||||
| ImageSourceRaw
|
||||
| CanvasSourceRaw
|
||||
| VectorSource
|
||||
| RasterSource
|
||||
| RasterDemSource;
|
||||
|
||||
export type AnySourceImpl = GeoJSONSource | VideoSource | ImageSource | CanvasSource | VectorSource | RasterSource | RasterDemSource
|
||||
export type AnySourceImpl =
|
||||
| GeoJSONSource
|
||||
| VideoSource
|
||||
| ImageSource
|
||||
| CanvasSource
|
||||
| VectorSource
|
||||
| RasterSource
|
||||
| RasterDemSource;
|
||||
|
||||
export interface Source {
|
||||
type: 'vector' | 'raster' | 'raster-dem' | 'geojson' | 'image' | 'video' | 'canvas';
|
||||
@ -897,9 +1018,17 @@ declare namespace mapboxgl {
|
||||
|
||||
getClusterExpansionZoom(clusterId: number, callback: (error: any, zoom: number) => void): this;
|
||||
|
||||
getClusterChildren(clusterId: number, callback: (error: any, features: GeoJSON.Feature<GeoJSON.Geometry>[]) => void): this;
|
||||
getClusterChildren(
|
||||
clusterId: number,
|
||||
callback: (error: any, features: GeoJSON.Feature<GeoJSON.Geometry>[]) => void,
|
||||
): this;
|
||||
|
||||
getClusterLeaves(cluserId: number, limit: number, offset: number, callback: (error: any, features: GeoJSON.Feature<GeoJSON.Geometry>[]) => void): this;
|
||||
getClusterLeaves(
|
||||
cluserId: number,
|
||||
limit: number,
|
||||
offset: number,
|
||||
callback: (error: any, features: GeoJSON.Feature<GeoJSON.Geometry>[]) => void,
|
||||
): this;
|
||||
}
|
||||
|
||||
export interface GeoJSONSourceOptions {
|
||||
@ -1120,7 +1249,7 @@ declare namespace mapboxgl {
|
||||
toString(): string;
|
||||
|
||||
/** Returns a boolean */
|
||||
isEmpty(): boolean
|
||||
isEmpty(): boolean;
|
||||
|
||||
/** Convert an array to a LngLatBounds object, or return an existing LngLatBounds object unchanged. */
|
||||
static convert(input: LngLatBoundsLike): mapboxgl.LngLatBounds;
|
||||
@ -1129,7 +1258,7 @@ declare namespace mapboxgl {
|
||||
/**
|
||||
* Point
|
||||
*/
|
||||
// Todo: Pull out class to seperate definition for Module "point-geometry"
|
||||
// Todo: Pull out class to seperate definition for Module "point-geometry"
|
||||
export class Point {
|
||||
x: number;
|
||||
y: number;
|
||||
@ -1257,33 +1386,33 @@ declare namespace mapboxgl {
|
||||
/** A string indicating the part of the Marker that should be positioned closest to the coordinate set via Marker.setLngLat.
|
||||
* Options are `'center'`, `'top'`, `'bottom'`, `'left'`, `'right'`, `'top-left'`, `'top-right'`, `'bottom-left'`, and `'bottom-right'`.
|
||||
* The default value os `'center'`
|
||||
*/
|
||||
*/
|
||||
anchor?: Anchor;
|
||||
|
||||
/** The color to use for the default marker if options.element is not provided. The default is light blue (#3FB1CE). */
|
||||
color?: string
|
||||
color?: string;
|
||||
|
||||
/** A boolean indicating whether or not a marker is able to be dragged to a new position on the map. The default value is false */
|
||||
draggable?: boolean;
|
||||
|
||||
/** The rotation angle of the marker in degrees, relative to its `rotationAlignment` setting. A positive value will rotate the marker clockwise.
|
||||
* The default value is 0.
|
||||
*/
|
||||
rotation?: number,
|
||||
*/
|
||||
rotation?: number;
|
||||
|
||||
/** `map` aligns the `Marker`'s rotation relative to the map, maintaining a bearing as the map rotates.
|
||||
* `viewport` aligns the `Marker`'s rotation relative to the viewport, agnostic to map rotations.
|
||||
* `auto` is equivalent to `viewport`.
|
||||
* The default value is `auto`
|
||||
*/
|
||||
rotationAlignment?: Alignment,
|
||||
*/
|
||||
rotationAlignment?: Alignment;
|
||||
|
||||
/** `map` aligns the `Marker` to the plane of the map.
|
||||
* `viewport` aligns the `Marker` to the plane of the viewport.
|
||||
* `auto` automatically matches the value of `rotationAlignment`.
|
||||
* The default value is `auto`.
|
||||
*/
|
||||
pitchAlignment?: Alignment
|
||||
pitchAlignment?: Alignment;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1323,7 +1452,8 @@ declare namespace mapboxgl {
|
||||
}
|
||||
|
||||
export class MapMouseEvent extends MapboxEvent<MouseEvent> {
|
||||
type: 'mousedown'
|
||||
type:
|
||||
| 'mousedown'
|
||||
| 'mouseup'
|
||||
| 'click'
|
||||
| 'dblclick'
|
||||
@ -1341,12 +1471,10 @@ declare namespace mapboxgl {
|
||||
defaultPrevented: boolean;
|
||||
}
|
||||
|
||||
export type MapLayerMouseEvent = MapMouseEvent & { features?: MapboxGeoJSONFeature[]; };
|
||||
export type MapLayerMouseEvent = MapMouseEvent & { features?: MapboxGeoJSONFeature[] };
|
||||
|
||||
export class MapTouchEvent extends MapboxEvent<TouchEvent> {
|
||||
type: 'touchstart'
|
||||
| 'touchend'
|
||||
| 'touchcancel';
|
||||
type: 'touchstart' | 'touchend' | 'touchcancel';
|
||||
|
||||
point: Point;
|
||||
lngLat: LngLat;
|
||||
@ -1357,7 +1485,7 @@ declare namespace mapboxgl {
|
||||
defaultPrevented: boolean;
|
||||
}
|
||||
|
||||
export type MapLayerTouchEvent = MapTouchEvent & { features?: MapboxGeoJSONFeature[]; };
|
||||
export type MapLayerTouchEvent = MapTouchEvent & { features?: MapboxGeoJSONFeature[] };
|
||||
|
||||
export class MapWheelEvent extends MapboxEvent<WheelEvent> {
|
||||
type: 'wheel';
|
||||
@ -1367,9 +1495,7 @@ declare namespace mapboxgl {
|
||||
}
|
||||
|
||||
export interface MapBoxZoomEvent extends MapboxEvent<MouseEvent> {
|
||||
type: 'boxzoomstart'
|
||||
| 'boxzoomend'
|
||||
| 'boxzoomcancel';
|
||||
type: 'boxzoomstart' | 'boxzoomend' | 'boxzoomcancel';
|
||||
|
||||
boxZoomBounds: LngLatBounds;
|
||||
}
|
||||
@ -1461,7 +1587,7 @@ declare namespace mapboxgl {
|
||||
// In practice center is always a {lat, lng} object.
|
||||
export type CameraForBoundsResult = Required<Pick<CameraOptions, 'zoom' | 'bearing'>> & {
|
||||
/** Map center */
|
||||
center: {lng: number; lat: number};
|
||||
center: { lng: number; lat: number };
|
||||
};
|
||||
|
||||
/**
|
||||
@ -1551,7 +1677,7 @@ declare namespace mapboxgl {
|
||||
pitchend: MapboxEvent<MouseEvent | TouchEvent | undefined>;
|
||||
|
||||
wheel: MapWheelEvent;
|
||||
}
|
||||
};
|
||||
|
||||
export type MapLayerEventType = {
|
||||
click: MapLayerMouseEvent;
|
||||
@ -1568,9 +1694,18 @@ declare namespace mapboxgl {
|
||||
touchstart: MapLayerTouchEvent;
|
||||
touchend: MapLayerTouchEvent;
|
||||
touchcancel: MapLayerTouchEvent;
|
||||
}
|
||||
};
|
||||
|
||||
export type AnyLayout = BackgroundLayout | FillLayout | FillExtrusionLayout | LineLayout | SymbolLayout | RasterLayout | CircleLayout | HeatmapLayout | HillshadeLayout;
|
||||
export type AnyLayout =
|
||||
| BackgroundLayout
|
||||
| FillLayout
|
||||
| FillExtrusionLayout
|
||||
| LineLayout
|
||||
| SymbolLayout
|
||||
| RasterLayout
|
||||
| CircleLayout
|
||||
| HeatmapLayout
|
||||
| HillshadeLayout;
|
||||
|
||||
export type AnyPaint =
|
||||
| BackgroundPaint
|
||||
@ -1585,7 +1720,16 @@ declare namespace mapboxgl {
|
||||
|
||||
export interface Layer {
|
||||
id: string;
|
||||
type?: 'fill' | 'line' | 'symbol' | 'circle' | 'fill-extrusion' | 'raster' | 'background' | 'heatmap' | 'hillshade';
|
||||
type?:
|
||||
| 'fill'
|
||||
| 'line'
|
||||
| 'symbol'
|
||||
| 'circle'
|
||||
| 'fill-extrusion'
|
||||
| 'raster'
|
||||
| 'background'
|
||||
| 'heatmap'
|
||||
| 'hillshade';
|
||||
|
||||
metadata?: any;
|
||||
ref?: string;
|
||||
@ -1681,7 +1825,7 @@ declare namespace mapboxgl {
|
||||
base?: number;
|
||||
type?: 'identity' | 'exponential' | 'interval' | 'categorical';
|
||||
default?: any;
|
||||
'colorSpace'?: 'rgb' | 'lab' | 'hcl';
|
||||
colorSpace?: 'rgb' | 'lab' | 'hcl';
|
||||
}
|
||||
|
||||
type Visibility = 'visible' | 'none';
|
||||
@ -1690,8 +1834,7 @@ declare namespace mapboxgl {
|
||||
visibility?: Visibility;
|
||||
}
|
||||
|
||||
export interface BackgroundLayout extends Layout {
|
||||
}
|
||||
export interface BackgroundLayout extends Layout {}
|
||||
|
||||
export interface BackgroundPaint {
|
||||
'background-color'?: string | Expression;
|
||||
@ -1721,8 +1864,7 @@ declare namespace mapboxgl {
|
||||
'fill-pattern-transition'?: Transition;
|
||||
}
|
||||
|
||||
export interface FillExtrusionLayout extends Layout {
|
||||
}
|
||||
export interface FillExtrusionLayout extends Layout {}
|
||||
|
||||
export interface FillExtrusionPaint {
|
||||
'fill-extrusion-opacity'?: number | Expression;
|
||||
@ -1845,8 +1987,7 @@ declare namespace mapboxgl {
|
||||
'text-translate-anchor'?: 'map' | 'viewport';
|
||||
}
|
||||
|
||||
export interface RasterLayout extends Layout {
|
||||
}
|
||||
export interface RasterLayout extends Layout {}
|
||||
|
||||
export interface RasterPaint {
|
||||
'raster-opacity'?: number | Expression;
|
||||
@ -1866,8 +2007,7 @@ declare namespace mapboxgl {
|
||||
'circle-sort-key'?: number;
|
||||
}
|
||||
|
||||
export interface CircleLayout extends Layout {
|
||||
}
|
||||
export interface CircleLayout extends Layout {}
|
||||
|
||||
export interface CirclePaint {
|
||||
'circle-radius'?: number | StyleFunction | Expression;
|
||||
@ -1891,8 +2031,7 @@ declare namespace mapboxgl {
|
||||
'circle-stroke-opacity-transition'?: Transition;
|
||||
}
|
||||
|
||||
export interface HeatmapLayout extends Layout {
|
||||
}
|
||||
export interface HeatmapLayout extends Layout {}
|
||||
|
||||
export interface HeatmapPaint {
|
||||
'heatmap-radius'?: number | StyleFunction | Expression;
|
||||
@ -1905,8 +2044,7 @@ declare namespace mapboxgl {
|
||||
'heatmap-opacity-transition'?: Transition;
|
||||
}
|
||||
|
||||
export interface HillshadeLayout extends Layout {
|
||||
}
|
||||
export interface HillshadeLayout extends Layout {}
|
||||
|
||||
export interface HillshadePaint {
|
||||
'hillshade-illumination-direction'?: number | Expression;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user