Click or drag to resize
LegacyTelogisServiceListCategoryMarkers Method
Print this page
Get an selection of markers from a given category.

Namespace: Telogis.API
 
Syntax
public Marker[] ListCategoryMarkers(
	long categoryId,
	int offset,
	int count
)

Parameters

categoryId
Type: SystemInt64
Category ID. Only markers from this category will be returned.
offset
Type: SystemInt32
Starting offset
count
Type: SystemInt32
Maximum number of markers to return

Return Value

Type: Marker
An array of Marker objects belonging to the specified category.
Remarks
This method returns count markers, beginning with the marker at offset.
Examples
C#
// get markers 0-99 inclusive
Marker[] hundredMarkers = myService.ListCategoryMarkers(myCategoryId, 0, 100);
// get markers 100-199 inclusive
Marker[] nextHundredMarkers = myService.ListCategoryMarkers(myCategoryId, 100, 100);
See Also