summaryrefslogtreecommitdiff
path: root/api/franca/navigation/poiservice/POISearch.fidl
diff options
context:
space:
mode:
Diffstat (limited to 'api/franca/navigation/poiservice/POISearch.fidl')
-rw-r--r--api/franca/navigation/poiservice/POISearch.fidl15
1 files changed, 13 insertions, 2 deletions
diff --git a/api/franca/navigation/poiservice/POISearch.fidl b/api/franca/navigation/poiservice/POISearch.fidl
index 1824307..c56b7fd 100644
--- a/api/franca/navigation/poiservice/POISearch.fidl
+++ b/api/franca/navigation/poiservice/POISearch.fidl
@@ -38,7 +38,7 @@ interface POISearch {
}
}
- <** @description : This method retrieves the list od POI categories available (pre-defined and custom).**>
+ <** @description : This method retrieves the list of POI categories available (pre-defined and custom).**>
method getAvailableCategories {
out {
<** @description : List of categories (id, name and top_level).**>
@@ -78,6 +78,17 @@ interface POISearch {
}
}
+ <** @description : Get the categories that are marked with the given standard category. **>
+ method getCategoriesWithStandardCategoryId {
+ in {
+ <** @description : Categories marked with "standardCategoryId" should be returned. **>
+ StandardCategory standardCategoryId
+ } out {
+ <** @description : List of categories that are marked with the requested standard category. **>
+ CategoryID[] categories
+ }
+ }
+
<** @description : This method retrieves the details associated to one or more POI categories.
It contains the name, the parent categories, the top level attribute, the list of attributes, the icons, ... .**>
method getCategoriesDetails {
@@ -265,4 +276,4 @@ interface POISearch {
UInt16 resultListSize
}
}
-} \ No newline at end of file
+}