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
)
Public Function ListCategoryMarkers (
categoryId As Long,
offset As Integer,
count As Integer
) As Marker()
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
Marker[] hundredMarkers = myService.ListCategoryMarkers(myCategoryId, 0, 100);
Marker[] nextHundredMarkers = myService.ListCategoryMarkers(myCategoryId, 100, 100);
See Also