Click or drag to resize
LegacyTelogisServiceFindMarkers2 Method
Print this page
Search for markers. Results can be filtered on: tag, properties, address location, driver and category. Set a field to null (or zero for numeric fields) to ignore a field when filtering search results.

Namespace: Telogis.API
 
Syntax
public Marker[] FindMarkers2(
	string tag,
	LatLon latLon,
	Address2 address,
	long categoryId,
	long driverId,
	Property[] properties
)

Parameters

tag
Type: SystemString
Only markers with tags that match this value will be returned. Use null to match all tags.
latLon
Type: Telogis.APILatLon
Set to null to ignore this field
address
Type: Telogis.APIAddress2
Set to null to ignore this field
categoryId
Type: SystemInt64
Set to zero to ignore this field
driverId
Type: SystemInt64
Set to zero to ignore this field
properties
Type: Telogis.APIProperty
An array of properties to filter markers on. A marker with properties A and B will not match a search for markers with property A, regardless of the property A value.

Return Value

Type: Marker
Remarks
A Marker without every property specified in the properties argument will not be found by this query.
See Also