Modify documentation of APIs
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / TurnInstruction.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 namespace Tizen.Maps
18 {
19     /// <summary>
20     /// Turn Instruction type for route maneuver
21     /// </summary>
22     public enum TurnInstruction
23     {
24         /// <summary>
25         /// Indicates unknown instruction.
26         /// </summary>
27         None = Interop.RouteTurnType.None,
28         /// <summary>
29         /// Indicates instruction to move straight.
30         /// </summary>
31         Straight = Interop.RouteTurnType.Straight,
32         /// <summary>
33         /// Indicates instruction to bear right.
34         /// </summary>
35         BearRight = Interop.RouteTurnType.BearRight,
36         /// <summary>
37         /// Indicates instruction to turn slightly to the right.
38         /// </summary>
39         LightRight = Interop.RouteTurnType.LightRight,
40         /// <summary>
41         /// Indicates instruction to turn right.
42         /// </summary>
43         Right = Interop.RouteTurnType.Right,
44         /// <summary>
45         /// Indicates instruction to turn hard to the right.
46         /// </summary>
47         HardRight = Interop.RouteTurnType.HardRight,
48         /// <summary>
49         /// Indicates instruction to u-turn to the right.
50         /// </summary>
51         UturnRight = Interop.RouteTurnType.UturnRight,
52         /// <summary>
53         /// Indicates instruction to u-turn to the left.
54         /// </summary>
55         UturnLeft = Interop.RouteTurnType.UturnLeft,
56         /// <summary>
57         /// Indicates instruction to turn hard to the left.
58         /// </summary>
59         HardLeft = Interop.RouteTurnType.HardLeft,
60         /// <summary>
61         /// Indicates instruction to turn left.
62         /// </summary>
63         Left = Interop.RouteTurnType.Left,
64         /// <summary>
65         /// Indicates instruction to turn slightly to the left.
66         /// </summary>
67         LightLeft = Interop.RouteTurnType.LightLeft,
68         /// <summary>
69         /// Indicates instruction to bear left.
70         /// </summary>
71         BearLeft = Interop.RouteTurnType.BearLeft,
72         /// <summary>
73         /// Indicates instruction to take right fork.
74         /// </summary>
75         RightFork = Interop.RouteTurnType.RightFork,
76         /// <summary>
77         /// Indicates instruction to take left fork.
78         /// </summary>
79         LeftFork = Interop.RouteTurnType.LeftFork,
80         /// <summary>
81         /// Indicates instruction to take straight fork.
82         /// </summary>
83         StraightFork = Interop.RouteTurnType.StraightFork,
84     }
85 }