Interface DoCmd2DLayerInfo

C#DoCmd2D後端回傳圖層結構

interface DoCmd2DLayerInfo {
    boundary: Boundary;
    epsgcode: number;
    islayerset: boolean;
    layername: string;
    layers: DoCmd2DLayerInfo[];
    setting: DoCmd2DLayerSetting;
    type: number;
}

Properties

boundary: Boundary

圖層邊界

epsgcode: number

EPSG

islayerset: boolean

圖層已設定

layername: string

圖層名稱

子圖層

圖層設定

type: number

圖層類型

  • NONE = 0,
  • SET = 1,
  • MERGE = 2,
  • VECTOR_BASE = 32,
  • VECTOR_ORACLE = 33,
  • VECTOR_SQLSERVER = 34,
  • VECTOR_POSTGRESQL = 35,
  • RASTER_BASE = 64,
  • RASTER_WMS = 65,
  • RASTER_WMTS = 66,
  • RASTER_DWG = 67,
  • CUSTOM = 96,
  • TERRAIN_BASE = 128,
  • OV_TERRAIN = 256,
  • OV_PHOTOGRAMMETRYMODEL = 257,
  • OV_PIPELINE = 258,
  • OV_TILEMAP = 259,
  • OV_WMS = 260,
  • OV_MESH = 261,
  • OV_VECTOR = 262,
  • OV_LIDAR = 263,
  • OV_MESHPOINTS = 264,
  • OV_MULTIWATER = 265,
  • OV_CITYMESH = 266,
  • OV_OGCI3S = 267,
  • OV_MODEL = 268,
  • OV_MODELSET = 269,
  • OV_SENSORTHINGS = 270,
  • OV_POINTCLOUD = 271,
  • OV_STREETVIEW = 272,
  • OV_SCENE = 273,
  • OV_PROJECTOR = 274,
  • OV_DITCH = 275

Generated using TypeDoc