summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchanywa <cbible.kim@samsung.com>2017-02-14 13:40:55 +0900
committerchanywa <cbible.kim@samsung.com>2017-02-14 13:40:55 +0900
commit716b67a9d3947b06f0a37343264a9749ee4d98c7 (patch)
tree3811e8b51761eaab1fe2ab0eab849386d939d7fb
parentd46302c6c2dc261127d0c2fd7d00d2cfc2a5ed1c (diff)
downloadmaps-716b67a9d3947b06f0a37343264a9749ee4d98c7.tar.gz
maps-716b67a9d3947b06f0a37343264a9749ee4d98c7.tar.bz2
maps-716b67a9d3947b06f0a37343264a9749ee4d98c7.zip
Fix design review issuessubmit/tizen/20170214.014038
Change-Id: I22cf55ddcd723a277adb879e88909daac5b014af
-rwxr-xr-xTizen.Maps/Tizen.Maps.csproj4
-rwxr-xr-xTizen.Maps/Tizen.Maps/RouteTransportMode.cs (renamed from Tizen.Maps/Tizen.Maps/TransportMode.cs)2
-rwxr-xr-xTizen.Maps/Tizen.Maps/ServiceData.cs6
3 files changed, 6 insertions, 6 deletions
diff --git a/Tizen.Maps/Tizen.Maps.csproj b/Tizen.Maps/Tizen.Maps.csproj
index 309b02f..3a5d66e 100755
--- a/Tizen.Maps/Tizen.Maps.csproj
+++ b/Tizen.Maps/Tizen.Maps.csproj
@@ -130,11 +130,11 @@
<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" />
@@ -157,4 +157,4 @@
<_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory)</_FullFrameworkReferenceAssemblyPaths>
<AutoUnifyAssemblyReferences>true</AutoUnifyAssemblyReferences>
</PropertyGroup>
-</Project> \ No newline at end of file
+</Project>
diff --git a/Tizen.Maps/Tizen.Maps/TransportMode.cs b/Tizen.Maps/Tizen.Maps/RouteTransportMode.cs
index 92195ea..ba00939 100755
--- a/Tizen.Maps/Tizen.Maps/TransportMode.cs
+++ b/Tizen.Maps/Tizen.Maps/RouteTransportMode.cs
@@ -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
diff --git a/Tizen.Maps/Tizen.Maps/ServiceData.cs b/Tizen.Maps/Tizen.Maps/ServiceData.cs
index 151ea7f..6df7db5 100755
--- a/Tizen.Maps/Tizen.Maps/ServiceData.cs
+++ b/Tizen.Maps/Tizen.Maps/ServiceData.cs
@@ -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