Interface HonuaTileServiceLayerOptions

Options for an ArcGIS TileLayer migrated into a MapLibre raster tile source.

interface HonuaTileServiceLayerOptions {
    attribution?: string;
    id?: string;
    layout?: Record<string, unknown>;
    maxScale?: number;
    minScale?: number;
    opacity?: number;
    paint?: Record<string, unknown>;
    tileSize?: number;
    title?: string;
    url: string;
    visible?: boolean;
}

Hierarchy (view full)

Properties

attribution?: string
id?: string
layout?: Record<string, unknown>
maxScale?: number
minScale?: number
opacity?: number
paint?: Record<string, unknown>
tileSize?: number
title?: string
url: string
visible?: boolean