GM_FindFeaturesFindNearestAddress Method |
Finds the address closest to the search location
Namespace:
GlobalMapper
Assembly:
GlobalMapperWrapperNET45 (in GlobalMapperWrapperNET45.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax public static GM_Error_t32 FindNearestAddress(
GM_Point_t aSearchPt,
GM_LayerList_t aLayerList,
out string aAddressStr,
uint aMaxAddressLen,
double aMaxDistMeters,
Object aReserved
)
Public Shared Function FindNearestAddress (
aSearchPt As GM_Point_t,
aLayerList As GM_LayerList_t,
<OutAttribute> ByRef aAddressStr As String,
aMaxAddressLen As UInteger,
aMaxDistMeters As Double,
aReserved As Object
) As GM_Error_t32
public:
static GM_Error_t32 FindNearestAddress(
GM_Point_t aSearchPt,
GM_LayerList_t^ aLayerList,
[OutAttribute] String^% aAddressStr,
unsigned int aMaxAddressLen,
double aMaxDistMeters,
Object^ aReserved
)
Parameters
- aSearchPt
- Type: GlobalMapper.TypesGM_Point_t
IN: Search location in current view projection (as returned by GM_SetProjection) - aLayerList
- Type: GlobalMapper.TypesGM_LayerList_t
IN: List of layers to search or NULL for all vector layers - aAddressStr
- Type: SystemString
I/O: Buffer to hold string for nearest address - aMaxAddressLen
- Type: SystemUInt32
IN: Maximum length of string to store in output - aMaxDistMeters
- Type: SystemDouble
IN: Maximum distance in meters to search around search point - aReserved
- Type: SystemObject
IN: Reserved for later use, must be NULL (0)
Return Value
Type:
GM_Error_t32A GM Error Code
See Also