summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorasanoaozora <fifitaneki@hotmail.com>2017-05-05 10:34:16 +0200
committerasanoaozora <fifitaneki@hotmail.com>2017-05-05 10:34:16 +0200
commit312fedf2360633e7d76f9a70a17c5d4961964e34 (patch)
tree5fefb94dbec0682c11bac1828814660145961c40 /api
parent306557b9d8ba6c77eca4270cd083f19b95e973c0 (diff)
downloadpoi-service-312fedf2360633e7d76f9a70a17c5d4961964e34.tar.gz
GT-3502 GT-3495-bis
GT-3502 MapViewerControl::SetMapViewPan should accept one element for panning GT-3495-bis Complete some descriptions
Diffstat (limited to 'api')
-rwxr-xr-xapi/franca/navigation/mapviewer/MapViewerControl.fidl4
-rw-r--r--api/franca/navigation/navigationcore/Guidance.fidl6
-rw-r--r--api/franca/navigation/navigationcore/Routing.fidl4
-rw-r--r--api/map-viewer/genivi-mapviewer-mapviewercontrol.xml8
4 files changed, 11 insertions, 11 deletions
diff --git a/api/franca/navigation/mapviewer/MapViewerControl.fidl b/api/franca/navigation/mapviewer/MapViewerControl.fidl
index 0e297ed..f1f678e 100755
--- a/api/franca/navigation/mapviewer/MapViewerControl.fidl
+++ b/api/franca/navigation/mapviewer/MapViewerControl.fidl
@@ -1322,7 +1322,7 @@ interface MapViewerControl {
**>
PanAction panningAction
- Pixel [] pixelCoordinates
+ Pixel pixelCoordinates
}
}
@@ -1344,7 +1344,7 @@ interface MapViewerControl {
}
out {
- Pixel [] pixelCoordinates
+ Pixel pixelCoordinates
}
}
diff --git a/api/franca/navigation/navigationcore/Guidance.fidl b/api/franca/navigation/navigationcore/Guidance.fidl
index 5fedd18..fa75c12 100644
--- a/api/franca/navigation/navigationcore/Guidance.fidl
+++ b/api/franca/navigation/navigationcore/Guidance.fidl
@@ -166,8 +166,8 @@ interface Guidance {
@description : struct generated for DBus argument GetManeuversList_maneuversListElem6
**>
struct ManeuverItem {
- UInt32 offsetOfManeuver
- UInt32 travelTime
+ UInt32 offsetOfManeuver //the offset of the maneuver in meters from the beginning of the route
+ UInt32 travelTime //time to reach the maneuver in second from the current position. Value 0 is returned If the maneuver is already passed
ManeuverDirectionType direction
ManeuverType maneuver
ManeuverData maneuverData
@@ -323,7 +323,7 @@ interface Guidance {
UInt32 offset
<**
- @description : travelTime = time to reach the destination in second
+ @description : travelTime = time to reach the destination in second from the current position
**>
UInt32 travelTime
diff --git a/api/franca/navigation/navigationcore/Routing.fidl b/api/franca/navigation/navigationcore/Routing.fidl
index d9ccbe0..98f12e2 100644
--- a/api/franca/navigation/navigationcore/Routing.fidl
+++ b/api/franca/navigation/navigationcore/Routing.fidl
@@ -119,8 +119,8 @@ interface Routing {
}
enumeration RouteOverviewType extends Schedule {
- TOTAL_TIME = 398 //value of type UInt32, that represents the total time in seconds
- TOTAL_DISTANCE = 399 //value of type UInt32, that represents the total distance in m
+ TOTAL_TIME = 398 //value of type UInt32, represents the total time (in seconds) takes to navigate from the beginning of the route till destination
+ TOTAL_DISTANCE = 399 //value of type UInt32, that represents the total distance (in m) from the beginning of the route till destination
}
union RouteOverviewItem {
diff --git a/api/map-viewer/genivi-mapviewer-mapviewercontrol.xml b/api/map-viewer/genivi-mapviewer-mapviewercontrol.xml
index 738a787..db6eb63 100644
--- a/api/map-viewer/genivi-mapviewer-mapviewercontrol.xml
+++ b/api/map-viewer/genivi-mapviewer-mapviewercontrol.xml
@@ -1044,9 +1044,9 @@ cover with other windows or user interface elements</line>
<line>PAN_END, pan the map to the specified screen coordinate identified by the arguments 'x' and 'y' and end panning; it has no effect before PAN_START</line>
</doc>
</arg>
- <arg name="pixelCoordinates" type="a(qq)" direction="in">
+ <arg name="pixelCoordinates" type="(qq)" direction="in">
<doc>
- <line>pixelCoordinates = array[struct(x,y)]</line>
+ <line>pixelCoordinates = struct(x,y)</line>
<line>x = x-coordinate (x=0 indicates the first left pixel of the map view)</line>
<line>y = y-coordinate (y=0 indicates the first top pixel of the map view)</line>
</doc>
@@ -1067,9 +1067,9 @@ cover with other windows or user interface elements</line>
<line>valueToReturn = enum(PAN_START,PAN_TO,PAN_END)</line>
</doc>
</arg>
- <arg name="pixelCoordinates" type="a(qq)" direction="out">
+ <arg name="pixelCoordinates" type="(qq)" direction="out">
<doc>
- <line>pixelCoordinates = array[struct(x,y)]</line>
+ <line>pixelCoordinates = struct(x,y)</line>
<line>x = x-coordinate (x=0 indicates the first left pixel of the map view)</line>
<line>y = y-coordinate (y=0 indicates the first top pixel of the map view)</line>
</doc>