gis:feature-get-entities


(gis:feature-get-entities  featureId)

Returns the list of all 'GIS entities' owned by the 'GIS Feature' object specified by featureId.

Arguments

featureId  (integer)  'handle' identifier of the 'GIS Feature' to query for its associated dwg entities

Return

list of ENAMEs on success, or NIL

Example

(vl-load-gis)  T
(setq layers (gis:get-layers))  ("shp_3857_point_2d_utf8")
(setq name (car layers))  "shp_3857_point_2d_utf8"
(setq layerId (gis:get-layer name))  1736983018068
(setq features (gis:layer-get-features layerId))  (1685094904232 1685094904233)
(setq featureId (car features))  1685094904232
(gis:feature-get-entities featureId)  (<Entity name: 5616ae40>)

Remarks




©  Bricsys NV. All rights reserved.