Fix design review issues
authorchanywa <cbible.kim@samsung.com>
Tue, 14 Feb 2017 04:40:55 +0000 (13:40 +0900)
committerchanywa <cbible.kim@samsung.com>
Tue, 14 Feb 2017 04:40:55 +0000 (13:40 +0900)
Change-Id: I22cf55ddcd723a277adb879e88909daac5b014af

src/Tizen.Maps/Tizen.Maps.csproj
src/Tizen.Maps/Tizen.Maps/RouteTransportMode.cs [moved from src/Tizen.Maps/Tizen.Maps/TransportMode.cs with 97% similarity]
src/Tizen.Maps/Tizen.Maps/ServiceData.cs

index 309b02f..3a5d66e 100755 (executable)
     <Compile Include="Tizen.Maps\RouteOptimization.cs" />
     <Compile Include="Tizen.Maps\RouteSearchRequest.cs" />
     <Compile Include="Tizen.Maps\RouteSegment.cs" />
+    <Compile Include="Tizen.Maps\RouteTransportMode.cs" />
     <Compile Include="Tizen.Maps\SearchPreference.cs" />
     <Compile Include="Tizen.Maps\ServiceRequestType.cs" />
     <Compile Include="Tizen.Maps\ServiceData.cs" />
     <Compile Include="Tizen.Maps\SnapshotType.cs" />
-    <Compile Include="Tizen.Maps\TransportMode.cs" />
     <Compile Include="Tizen.Maps\TurnInstruction.cs" />
   </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
     <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory)</_FullFrameworkReferenceAssemblyPaths>
     <AutoUnifyAssemblyReferences>true</AutoUnifyAssemblyReferences>
   </PropertyGroup>
-</Project>
\ No newline at end of file
+</Project>
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 (executable)
@@ -19,7 +19,7 @@ namespace Tizen.Maps
     /// <summary>
     /// Route types
     /// </summary>
-    public enum TransportMode
+    public enum RouteTransportMode
     {
         /// <summary>
         /// Route is to be traveled by car
index 151ea7f..6df7db5 100755 (executable)
@@ -65,15 +65,15 @@ namespace Tizen.Maps
         /// <summary>
         /// Indicates that the Route Data Structure is defined as a Path (a list of geographical coordinates)
         /// </summary>
-        RouteAsPath = Interop.ServiceData.RoutePath,
+        RoutePath = Interop.ServiceData.RoutePath,
         /// <summary>
         /// Indicates that the Route Data Structure is defined as a list of Segments while each segment is defined as a Path
         /// </summary>
-        SegmentsAsPath = Interop.ServiceData.RouteSegmentsPath,
+        RouteSegmentsPath = Interop.ServiceData.RouteSegmentsPath,
         /// <summary>
         /// Indicates that the Route Data Structure is defined as a list of Segments while each segment is defined as a list of Maneuvers
         /// </summary>
-        SegmentsAsManeuvers = Interop.ServiceData.RouteSegmentsManeuvers,
+        RouteSegmentsManeuvers = Interop.ServiceData.RouteSegmentsManeuvers,
 
         /// <summary>
         /// Indicates availability of traffic information on the Map