From: chanywa Date: Tue, 14 Feb 2017 04:40:55 +0000 (+0900) Subject: Fix design review issues X-Git-Tag: submit/trunk/20170823.075128~101^2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a4a5afe04a77856117cbe97f592e31bc292fb478;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Fix design review issues Change-Id: I22cf55ddcd723a277adb879e88909daac5b014af --- diff --git a/src/Tizen.Maps/Tizen.Maps.csproj b/src/Tizen.Maps/Tizen.Maps.csproj index 309b02f..3a5d66e 100755 --- a/src/Tizen.Maps/Tizen.Maps.csproj +++ b/src/Tizen.Maps/Tizen.Maps.csproj @@ -130,11 +130,11 @@ + - @@ -157,4 +157,4 @@ <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory) true - \ No newline at end of file + diff --git a/src/Tizen.Maps/Tizen.Maps/TransportMode.cs b/src/Tizen.Maps/Tizen.Maps/RouteTransportMode.cs similarity index 97% rename from src/Tizen.Maps/Tizen.Maps/TransportMode.cs rename to src/Tizen.Maps/Tizen.Maps/RouteTransportMode.cs index 92195ea..ba00939 100755 --- a/src/Tizen.Maps/Tizen.Maps/TransportMode.cs +++ b/src/Tizen.Maps/Tizen.Maps/RouteTransportMode.cs @@ -19,7 +19,7 @@ namespace Tizen.Maps /// /// Route types /// - public enum TransportMode + public enum RouteTransportMode { /// /// Route is to be traveled by car diff --git a/src/Tizen.Maps/Tizen.Maps/ServiceData.cs b/src/Tizen.Maps/Tizen.Maps/ServiceData.cs index 151ea7f..6df7db5 100755 --- a/src/Tizen.Maps/Tizen.Maps/ServiceData.cs +++ b/src/Tizen.Maps/Tizen.Maps/ServiceData.cs @@ -65,15 +65,15 @@ namespace Tizen.Maps /// /// Indicates that the Route Data Structure is defined as a Path (a list of geographical coordinates) /// - RouteAsPath = Interop.ServiceData.RoutePath, + RoutePath = Interop.ServiceData.RoutePath, /// /// Indicates that the Route Data Structure is defined as a list of Segments while each segment is defined as a Path /// - SegmentsAsPath = Interop.ServiceData.RouteSegmentsPath, + RouteSegmentsPath = Interop.ServiceData.RouteSegmentsPath, /// /// Indicates that the Route Data Structure is defined as a list of Segments while each segment is defined as a list of Maneuvers /// - SegmentsAsManeuvers = Interop.ServiceData.RouteSegmentsManeuvers, + RouteSegmentsManeuvers = Interop.ServiceData.RouteSegmentsManeuvers, /// /// Indicates availability of traffic information on the Map