Modify documentation of APIs
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / RouteFeature.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     /// Route features, used for route search requests
21     /// </summary>
22     public enum RouteFeature
23     {
24         /// <summary>
25         /// Indicates no route features (are selected).
26         /// </summary>
27         None = Interop.RouteRequestFeature.None,
28         /// <summary>
29         /// Indicates toll roads (toll gates/booths).
30         /// </summary>
31         Toll = Interop.RouteRequestFeature.Toll,
32         /// <summary>
33         /// Indicates motorway.
34         /// </summary>
35         Motorway = Interop.RouteRequestFeature.MotorWay,
36         /// <summary>
37         /// Indicates a boat ferry.
38         /// </summary>
39         BoatFerry = Interop.RouteRequestFeature.BoatFerry,
40         /// <summary>
41         /// Indicates rail (train) ferry.
42         /// </summary>
43         RailFerry = Interop.RouteRequestFeature.RailFerry,
44         /// <summary>
45         /// Indicates public transport.
46         /// </summary>
47         PublicTransit = Interop.RouteRequestFeature.PublicTransit,
48         /// <summary>
49         /// Indicates tunnel.
50         /// </summary>
51         Tunnel = Interop.RouteRequestFeature.Tunnel,
52         /// <summary>
53         /// Indicates dirt road.
54         /// </summary>
55         DirtRoad = Interop.RouteRequestFeature.DirtRoad,
56         /// <summary>
57         /// Indicates park.
58         /// </summary>
59         Parks = Interop.RouteRequestFeature.Parks,
60         /// <summary>
61         /// Indicates a high-occupancy vehicle lane.
62         /// </summary>
63         Hovlane = Interop.RouteRequestFeature.Hovlane,
64         /// <summary>
65         /// Indicates stairs.
66         /// </summary>
67         Stairs = Interop.RouteRequestFeature.Stairs,
68     }
69 }