Modify documentation of APIs 53/132553/2
authorchanywa <cbible.kim@samsung.com>
Wed, 7 Jun 2017 01:16:42 +0000 (10:16 +0900)
committerchanywa <cbible.kim@samsung.com>
Wed, 7 Jun 2017 01:18:28 +0000 (10:18 +0900)
Change-Id: Id50bd043e9328828809dfa71108cab2aa377b4af

Tizen.Maps/Tizen.Maps/MapService.cs
Tizen.Maps/Tizen.Maps/NamespaceDoc.cs
Tizen.Maps/Tizen.Maps/PlaceAddress.cs
Tizen.Maps/Tizen.Maps/PlaceAddressList.cs
Tizen.Maps/Tizen.Maps/PlaceList.cs
Tizen.Maps/Tizen.Maps/RouteOptimization.cs
Tizen.Maps/Tizen.Maps/ServiceRequestType.cs

index 9a84753..eba01fb 100755 (executable)
@@ -78,7 +78,6 @@ namespace Tizen.Maps
         /// </summary>
         public string Provider { get { return _serviceProvider; } }
 
-
         /// <summary>
         /// Gets and sets a string representing keys for map service provider
         /// </summary>
@@ -115,7 +114,7 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets search preferences used for <see cref="Geocode"/> or <see cref="ReverseGeocode"/> request.
+        /// Gets search preferences used for <see cref="GeocodeRequest"/> or <see cref="ReverseGeocodeRequest"/>.
         /// </summary>
         public IGeocodePreference GeocodePreferences
         {
@@ -126,7 +125,7 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets search preferences used for <see cref="Place"/> search request.
+        /// Gets search preferences used for <see cref="PlaceSearchRequest"/>.
         /// </summary>
         public IPlaceSearchPreference PlaceSearchPreferences
         {
@@ -137,7 +136,7 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets search preferences used for <see cref="Route"/> search request.
+        /// Gets search preferences used for <see cref="RouteSearchRequest"/>.
         /// </summary>
         public IRouteSearchPreference RouteSearchPreferences
         {
index 9e49461..2c9fe11 100755 (executable)
@@ -2,7 +2,7 @@
 <summary>
 The Tizen.Maps namespace provides classes to get the information of Place, Geocoding, Route by querying,
 or to show them on the map view with interactive gestural interface.
-<summary>
+</summary>
 
 
 
@@ -10,7 +10,7 @@ or to show them on the map view with interactive gestural interface.
 
 <h2>Overview</h2>
 <para>
-Maps API provides a developer with a set of functions, helping to create Maps aware applications.<p>
+Maps API provides a developer with a set of functions, helping to create Maps aware applications.<p/>
 
 Maps API comprises of following features:<br/>
 - Geocoding and reverse Geocoding<br/>
@@ -21,14 +21,14 @@ Maps API comprises of following features:<br/>
 
 
 <para>
-Maps API allows a Developer to choose one of Map Providers which are being included as plugins.<p>
+Maps API allows a Developer to choose one of Map Providers which are being included as plugins.<p/>
 
 <para>
 <h3>Geocoding</h3>
 The Maps Geocoding API allows translating an address to its geographical
 location defined in terms of latitude and longitude; the input can be a
 qualified and structured address or a free-formed search text with full or
-partial address information.<p>
+partial address information.<p/>
 
 The example below shows a structured address:<br/>
  - housenumber=117,<br/>
@@ -52,7 +52,7 @@ question "Where am I?".
 <h3>Route</h3>
 The Maps Route API provides ways to calculate a route that defines a path
 between a start and a destination and may, optionally, pass through specific
-intermediate locations.<p>
+intermediate locations.<p/>
 
 Route Preferences:<br/>
  - Travel Mode (car, pedestrian, public transit, truck),<br/>
@@ -69,7 +69,7 @@ Route Preferences:<br/>
 
 <para>
 <h3>Places</h3>
-The Maps Place API allows you to find place information.<p>
+The Maps Place API allows you to find place information.<p/>
 
 Place search<br/>
  - Depending on the location context, the number of relevant places might
@@ -93,20 +93,20 @@ Place information allows to fetch details about a place. The following place con
 <para>
 <h3>View</h3>
 The Maps View API provides a developer with a set of functions, bringing
-basic interactive visual user interface in maps applications.<p>
+basic interactive visual user interface in maps applications.<p/>
 
 View widget: Drawing a map image on the map port, the specified rectangular
-area of the maps application GUI.<p>
+area of the maps application GUI.<p/>
 
 Zoom and rotation: Changing zoom and orientation of the view in response
-to user gestures, such as scrolling, tapping, zooming, rotating, etc.<p>
+to user gestures, such as scrolling, tapping, zooming, rotating, etc.<p/>
 
-Conversion of screen coordinates to geographical and vise versa.<p>
+Conversion of screen coordinates to geographical and vise versa.<p/>
 
 User's gesture support:<br/>
  - Receive the event of the user gesture.<br/>
  - Enable or disable the specified gesture.<br/>
- - Re-assign the action, which should be taken in response to the user's gesture.<p>
+ - Re-assign the action, which should be taken in response to the user's gesture.<p/>
 
 Various Properties:<br/>
  - Visibility and size on the screen.<br/>
index e9eba1d..e9c9fb9 100755 (executable)
@@ -100,7 +100,7 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets a county name for this address.
+        /// Gets a county for this address.
         /// </summary>
         public string County
         {
index fc3c184..c61e320 100755 (executable)
@@ -20,7 +20,7 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// List of <see cref="PlaceAddress"/> objects to be used in <see cref="ServiceData.MapService"/> APIs
+    /// List of <see cref="PlaceAddress"/> objects to be used in <see cref="MapService"/> APIs
     /// </summary>
     internal class PlaceAddressList : IDisposable
     {
index 56e67f4..844bfb0 100755 (executable)
@@ -20,7 +20,7 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// List of <see cref="Place"/> objects to be used in <see cref="ServiceData.MapService"/> APIs
+    /// List of <see cref="Place"/> objects to be used in <see cref="MapService"/> APIs
     /// </summary>
     internal class PlaceList : IDisposable
     {
index 377dd7a..89629cb 100755 (executable)
@@ -20,7 +20,7 @@ namespace Tizen.Maps
     /// Allowed route optimization option used in route search requests
     /// </summary>
     /// <remarks>
-    /// Depending on loaded maps plug-in using <paramref name="MapService"/>, some features may have no effect or differences with descriptions.
+    /// Depending on loaded maps plug-in using <see cref="MapService"/>, some features may have no effect or differences with descriptions.
     /// </remarks>
     public enum RouteOptimization
     {
index 1397980..7e3c2a9 100755 (executable)
@@ -59,7 +59,7 @@ namespace Tizen.Maps
         /// </summary>
         SearchPlaceList = Interop.ServiceType.SearchPlaceList,
         /// <summary>
-        /// Indicates that service request to get detailed <see cref="Place"/> information for a given <see cref="PlaceUrl"/> is allowed.
+        /// Indicates that service request to get detailed <see cref="Place"/> information for a given <see cref="PlaceList"/> is allowed.
         /// </summary>
         SearchGetPlaceDetails = Interop.ServiceType.SearchGetPlaceDetails,