Fix design review issues
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / ServiceData.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     /// Features available in the Map Service
21     /// </summary>
22     public enum ServiceData
23     {
24         /// <summary>
25         /// Indicates availability of address value in the Place data
26         /// </summary>
27         PlaceAddress = Interop.ServiceData.PlaceAddress,
28         /// <summary>
29         /// Indicates availability of rating value in the Place data
30         /// </summary>
31         PlaceRating = Interop.ServiceData.PlaceRating,
32         /// <summary>
33         /// Indicates availability of place category list in the Place data
34         /// </summary>
35         PlaceCategories = Interop.ServiceData.PlaceCategories,
36         /// <summary>
37         /// Indicates availability of place attribute list in the Place data
38         /// </summary>
39         PlaceAttributes = Interop.ServiceData.PlaceAttributes,
40         /// <summary>
41         /// Indicates availability of place contact list in the Place data
42         /// </summary>
43         PlaceContacts = Interop.ServiceData.PlaceContacts,
44         /// <summary>
45         /// Indicates availability of place editorial list in the Place data
46         /// </summary>
47         PlaceEditorials = Interop.ServiceData.PlaceEditorials,
48         /// <summary>
49         /// Indicates availability of place review list in the Place data
50         /// </summary>
51         PlaceReviews = Interop.ServiceData.PlaceReviews,
52         /// <summary>
53         /// Indicates availability of place image in Place the data
54         /// </summary>
55         PlaceImage = Interop.ServiceData.PlaceImage,
56         /// <summary>
57         /// Indicates availability of place supplier link value in the Place data
58         /// </summary>
59         PlaceSupplier = Interop.ServiceData.PlaceSupplier,
60         /// <summary>
61         /// Indicates availability of related place link in the Place data
62         /// </summary>
63         PlaceRelated = Interop.ServiceData.PlaceRelated,
64
65         /// <summary>
66         /// Indicates that the Route Data Structure is defined as a Path (a list of geographical coordinates)
67         /// </summary>
68         RoutePath = Interop.ServiceData.RoutePath,
69         /// <summary>
70         /// Indicates that the Route Data Structure is defined as a list of Segments while each segment is defined as a Path
71         /// </summary>
72         RouteSegmentsPath = Interop.ServiceData.RouteSegmentsPath,
73         /// <summary>
74         /// Indicates that the Route Data Structure is defined as a list of Segments while each segment is defined as a list of Maneuvers
75         /// </summary>
76         RouteSegmentsManeuvers = Interop.ServiceData.RouteSegmentsManeuvers,
77
78         /// <summary>
79         /// Indicates availability of traffic information on the Map
80         /// </summary>
81         ViewTraffic = Interop.ServiceData.ViewTraffic,
82         /// <summary>
83         /// Indicates availability of public transit information on the Map
84         /// </summary>
85         ViewPublicTransit = Interop.ServiceData.ViewPublicTransit,
86         /// <summary>
87         /// Indicates availability of 3D building drawable on the Map
88         /// </summary>
89         ViewBuilding = Interop.ServiceData.ViewBuilding,
90         /// <summary>
91         /// Indicates availability of scale bar on the Map
92         /// </summary>
93         ViewScalebar = Interop.ServiceData.ViewScalebar,
94     }
95 }