gi-nx / MapboxLensable
ts
type MapboxLensable = {
geometry: LensableGeometry;
id?: string | number;
properties: Record<string, any> | null;
source?: string;
sourceLayer?: string;
tile?: {
x: number;
y: number;
z: number;
};
type: "Feature";
};Properties
| Property | Type | Description |
|---|---|---|
geometry | LensableGeometry | - |
id? | string | number | - |
properties | Record<string, any> | null | - |
source? | string | From mapbox-gl GeoJSONFeature |
sourceLayer? | string | From mapbox-gl GeoJSONFeature |
tile.x | number | - |
tile.y | number | - |
tile.z | number | - |
type | "Feature" | - |