interface GeoJSONSource {
    cluster?: {
        maxZoom: any;
        properties?: {
            [property: string]: [any, any];
        };
        radius: any;
    };
    data?: any;
    lineMetrics?: boolean;
    maxzoom?: number;
    minzoom?: number;
    scheme?: "xyz" | "tms";
    type: "geojson";
}

Hierarchy (view full)

Properties

cluster?: {
    maxZoom: any;
    properties?: {
        [property: string]: [any, any];
    };
    radius: any;
}

Type declaration

  • maxZoom: any
  • Optional properties?: {
        [property: string]: [any, any];
    }
    • [property: string]: [any, any]
  • radius: any
data?: any
lineMetrics?: boolean
maxzoom?: number
minzoom?: number
scheme?: "xyz" | "tms"
type: "geojson"