Gis:layer-get-source

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(gis:layer-get-source layerId )


機能
layerId で指定した 'GIS Layer' オブジェクトのソースレイヤー名を返す。


引数
  • layerId: 「GISレイヤ」の「ハンドル」識別子。


戻り値
成功なら文字列、それ以外は nil。 空の文字列も有効な結果である。


サンプル
(vl-load-gis)
T

(setq layers (gis:get-layers))
("shp_3857_point_2d_utf8")

(setq layerId (gis:get-layer (car layers)))
1736904439915

(setq source (gis:layer-get-source layerId))
""



関連事項