Click or drag to resize
LegacyTelogisServiceFindMarkers 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[] FindMarkers(
	string tag,
	LatLon latLon,
	Address Item,
	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
Location of the marker. It is possible that multiple markers will encompass this location.
Item
Type: Address
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