GM_LidarQuery_tCreateLidarQuery Method |
Creates a query of all Lidar points in a particular bounding box from some layers
Namespace:
GlobalMapper.Lidar
Assembly:
GlobalMapperWrapperNET45 (in GlobalMapperWrapperNET45.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax public static GM_Error_t32 CreateLidarQuery(
GM_LayerList_t aLayerList,
GM_Rectangle_t aWorldBounds,
GM_LidarQueryFilter_t aFilter,
out GM_LidarQuery_t aLidarQuery,
out ulong aQueryPoints
)
Public Shared Function CreateLidarQuery (
aLayerList As GM_LayerList_t,
aWorldBounds As GM_Rectangle_t,
aFilter As GM_LidarQueryFilter_t,
<OutAttribute> ByRef aLidarQuery As GM_LidarQuery_t,
<OutAttribute> ByRef aQueryPoints As ULong
) As GM_Error_t32
public:
static GM_Error_t32 CreateLidarQuery(
GM_LayerList_t^ aLayerList,
GM_Rectangle_t^ aWorldBounds,
GM_LidarQueryFilter_t^ aFilter,
[OutAttribute] GM_LidarQuery_t^% aLidarQuery,
[OutAttribute] unsigned long long% aQueryPoints
)
Parameters
- aLayerList
- Type: GlobalMapper.TypesGM_LayerList_t
IN: List of layers to search or NULL for all vector layers - aWorldBounds
- Type: GlobalMapper.TypesGM_Rectangle_t
IN: World bounds for search space or NULL for last drawn - aFilter
- Type: GlobalMapper.LidarGM_LidarQueryFilter_t
IN: Optional filter to apply to query (NULL if no extra filter) - aLidarQuery
- Type: GlobalMapper.LidarGM_LidarQuery_t
OUT: Created Lidar query to be used in future calls - aQueryPoints
- Type: SystemUInt64
OUT: Number of points matching query
Return Value
Type:
GM_Error_t32A GM Error Code
See Also