Interface RasterPixelValueRequestExperimental

interface RasterPixelValueRequest {
    bands?: readonly number[];
    space: "coordinate" | "pixel";
    spatialReference?: string | number;
    style?: RasterStyle;
    x: number;
    y: number;
}

Properties

bands?: readonly number[]
space: "coordinate" | "pixel"
spatialReference?: string | number
style?: RasterStyle
x: number
y: number