yolkbot
    Preparing search index...

    Interface MapExtents

    The size of a map in each dimension (x/y/z), represented by min/max on a MapJSON

    interface MapExtents {
        depth: number;
        height: number;
        width: number;
        x: { max: number; min: number };
        y: { max: number; min: number };
        z: { max: number; min: number };
    }
    Index

    Properties

    Properties

    depth: number

    The map depth

    height: number

    The map height

    width: number

    The map width

    x: { max: number; min: number }

    The X coordinate on the extents

    Type Declaration

    • max: number

      The maximum X

    • min: number

      The minimum X

    y: { max: number; min: number }

    The Y coordinate on the extents

    Type Declaration

    • max: number

      The maximum Y

    • min: number

      The minimum Y

    z: { max: number; min: number }

    The Z coordinate on the extents

    Type Declaration

    • max: number

      The maximum Z

    • min: number

      The minimum Z