LegacyTelogisServiceCreateCategory Method |
Namespace: Telogis.API
// create a Category long catID = myService.CreateCategory("customers", cust_props); // add markers to our Category myService.AddMarkerToCategory(catID, markerID); ... // list first 10 markers int i = 0; OT.Category[] categories = service.ListCategories(0, 10); foreach (Category c in categories) Console.WriteLine("Category {0} is tagged '{1}'", i++, c.Tag);