Sync with original maps package 46/144546/2
authorchanywa <cbible.kim@samsung.com>
Thu, 17 Aug 2017 06:38:20 +0000 (15:38 +0900)
committerSeechan Kim <cbible.kim@samsung.com>
Thu, 17 Aug 2017 06:38:42 +0000 (06:38 +0000)
Change-Id: I4c0b4d92a7e19e864e7e4cd84db6d4da74b75d6e

51 files changed:
src/Tizen.Maps/Tizen.Maps/Area.cs
src/Tizen.Maps/Tizen.Maps/Direction.cs
src/Tizen.Maps/Tizen.Maps/DistanceUnit.cs
src/Tizen.Maps/Tizen.Maps/GeocodeRequest.cs
src/Tizen.Maps/Tizen.Maps/Geocoordinates.cs
src/Tizen.Maps/Tizen.Maps/GeocoordinatesList.cs
src/Tizen.Maps/Tizen.Maps/GestureType.cs
src/Tizen.Maps/Tizen.Maps/IGeocodePreference.cs
src/Tizen.Maps/Tizen.Maps/IPlaceSearchPreference.cs
src/Tizen.Maps/Tizen.Maps/IRouteSearchPreference.cs
src/Tizen.Maps/Tizen.Maps/MapGestureEventArgs.cs
src/Tizen.Maps/Tizen.Maps/MapObject.cs
src/Tizen.Maps/Tizen.Maps/MapService.cs
src/Tizen.Maps/Tizen.Maps/MapServiceRequest.cs
src/Tizen.Maps/Tizen.Maps/MapTypes.cs
src/Tizen.Maps/Tizen.Maps/MapView.cs
src/Tizen.Maps/Tizen.Maps/Marker.cs
src/Tizen.Maps/Tizen.Maps/MultiReverseGeocodeRequest.cs
src/Tizen.Maps/Tizen.Maps/NamespaceDoc.cs
src/Tizen.Maps/Tizen.Maps/Overlay.cs
src/Tizen.Maps/Tizen.Maps/Place.cs
src/Tizen.Maps/Tizen.Maps/PlaceAddress.cs
src/Tizen.Maps/Tizen.Maps/PlaceAddressList.cs
src/Tizen.Maps/Tizen.Maps/PlaceAttribute.cs
src/Tizen.Maps/Tizen.Maps/PlaceCategory.cs
src/Tizen.Maps/Tizen.Maps/PlaceContact.cs
src/Tizen.Maps/Tizen.Maps/PlaceEditorial.cs
src/Tizen.Maps/Tizen.Maps/PlaceFilter.cs
src/Tizen.Maps/Tizen.Maps/PlaceImage.cs
src/Tizen.Maps/Tizen.Maps/PlaceLink.cs
src/Tizen.Maps/Tizen.Maps/PlaceList.cs
src/Tizen.Maps/Tizen.Maps/PlaceMedia.cs
src/Tizen.Maps/Tizen.Maps/PlaceRating.cs
src/Tizen.Maps/Tizen.Maps/PlaceReview.cs
src/Tizen.Maps/Tizen.Maps/PlaceSearchRequest.cs
src/Tizen.Maps/Tizen.Maps/Polygon.cs
src/Tizen.Maps/Tizen.Maps/Polyline.cs
src/Tizen.Maps/Tizen.Maps/ReverseGeocodeRequest.cs
src/Tizen.Maps/Tizen.Maps/Route.cs
src/Tizen.Maps/Tizen.Maps/RouteFeature.cs
src/Tizen.Maps/Tizen.Maps/RouteFeatureWeight.cs
src/Tizen.Maps/Tizen.Maps/RouteManeuver.cs
src/Tizen.Maps/Tizen.Maps/RouteOptimization.cs
src/Tizen.Maps/Tizen.Maps/RouteSearchRequest.cs
src/Tizen.Maps/Tizen.Maps/RouteSegment.cs
src/Tizen.Maps/Tizen.Maps/SearchPreference.cs
src/Tizen.Maps/Tizen.Maps/ServiceData.cs
src/Tizen.Maps/Tizen.Maps/ServiceRequestType.cs
src/Tizen.Maps/Tizen.Maps/SnapshotType.cs
src/Tizen.Maps/Tizen.Maps/TransportMode.cs
src/Tizen.Maps/Tizen.Maps/TurnInstruction.cs

index 9e19368..a60be0e 100755 (executable)
@@ -19,36 +19,36 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Class representing geographical area
+    /// The class representing a geographical area.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Area : IDisposable
     {
         internal Interop.AreaHandle handle;
 
         /// <summary>
-        /// Constructs rectangular area.
+        /// Constructs rectangular area.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="topLeft">Top-left coordinates of the area</param>
-        /// <param name="bottomRight">Bottom-left coordinate of the area</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="topLeft">Top-left coordinates of the area.</param>
+        /// <param name="bottomRight">Bottom-left coordinates of the area.</param>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
-        /// <exception cref="System.ArgumentException">Thrown when input coordinates are invalid</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory.</exception>
+        /// <exception cref="System.ArgumentException">Thrown when input coordinates are invalid.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation fails to allocate memory.</exception>
         public Area(Geocoordinates topLeft, Geocoordinates bottomRight)
         {
             handle = new Interop.AreaHandle(topLeft?.handle, bottomRight?.handle);
         }
 
         /// <summary>
-        /// Constructs circular area.
+        /// Constructs circular area.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="center">Coordinates for center of the area</param>
-        /// <param name="radius">Radius of the area</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="center">Coordinates for center of the area.</param>
+        /// <param name="radius">Radius of the area.</param>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
-        /// <exception cref="System.ArgumentException">Thrown when input coordinates are invalid</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory.</exception>
+        /// <exception cref="System.ArgumentException">Thrown when input coordinates are invalid.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation fails to allocate memory.</exception>
         public Area(Geocoordinates center, double radius)
         {
             handle = new Interop.AreaHandle(center?.handle, radius);
@@ -72,9 +72,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 61c924f..e479d8a 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Direction types for route maneuver
+    /// The direction types for route maneuver.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum DirectionType
     {
         /// <summary>
-        /// Indicates unknown direction.
+        /// Indicates an unknown direction.
         /// </summary>
         None = Interop.RouteDirection.None,
         /// <summary>
-        /// Indicates north direction.
+        /// Indicates the North direction.
         /// </summary>
         North = Interop.RouteDirection.North,
         /// <summary>
-        /// Indicates north-west direction.
+        /// Indicates the Northwest direction.
         /// </summary>
         NorthWest = Interop.RouteDirection.NorthWest,
         /// <summary>
-        /// Indicates north-east direction.
+        /// Indicates the Northeast direction.
         /// </summary>
         NorthEast = Interop.RouteDirection.NorthEast,
         /// <summary>
-        /// Indicates south direction.
+        /// Indicates the South direction.
         /// </summary>
         South = Interop.RouteDirection.South,
         /// <summary>
-        /// Indicates south-East direction.
+        /// Indicates the Southeast direction.
         /// </summary>
         SouthEast = Interop.RouteDirection.SouthEast,
         /// <summary>
-        /// Indicates south-West direction.
+        /// Indicates the Southwest direction.
         /// </summary>
         SouthWest = Interop.RouteDirection.SouthWest,
         /// <summary>
-        /// Indicates west direction.
+        /// Indicates the West direction.
         /// </summary>
         West = Interop.RouteDirection.West,
         /// <summary>
-        /// Indicates east direction.
+        /// Indicates the East direction.
         /// </summary>
         East = Interop.RouteDirection.East,
     }
index addc926..f96b13d 100755 (executable)
@@ -17,9 +17,9 @@
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Allowed distance units
+    /// The allowed distance units.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum DistanceUnit
     {
         /// <summary>
index f39452c..bf58885 100755 (executable)
@@ -20,9 +20,9 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Geocode request for map service
+    /// Geocode request for the map service.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class GeocodeRequest : MapServiceRequest<Geocoordinates>
     {
         private Interop.GeocodeCallback _geocodeCallback;
@@ -92,7 +92,7 @@ namespace Tizen.Maps
                 }
                 else
                 {
-                    // If search is failed, the value of total is 0 and coordinates is NULL
+                    // If the search fails, the value of total is 0 and coordinates is NULL.
                     _requestTask?.TrySetException(result.GetException(errMessage));
                     return false;
                 }
index fb891ac..848dfae 100755 (executable)
@@ -19,21 +19,21 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Class representing geographical coordinates.
+    /// A class representing geographical coordinates.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Geocoordinates : IDisposable
     {
         internal Interop.CoordinatesHandle handle;
 
         /// <summary>
-        /// Constructs map coordinates object.
+        /// Constructs the map coordinates object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="latitude">Latitude value, must be between (-90.0 ~ 90.0) degrees</param>
-        /// <param name="longitude">Longitude value, must be between (-180.0 ~ 180.0) degrees</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="latitude">Latitude value must be between (-90.0 ~ 90.0) degrees.</param>
+        /// <param name="longitude">Longitude value must be between (-180.0 ~ 180.0) degrees.</param>
         /// <exception cref="System.ArgumentException">Thrown when values for latitude and longitude are not valid.</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation fails to allocate memory.</exception>
         public Geocoordinates(double latitude, double longitude)
         {
             handle = new Interop.CoordinatesHandle(latitude, longitude);
@@ -45,9 +45,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets latitude of the coordinates.
+        /// Gets the latitude coordinates.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Latitude
         {
             get
@@ -57,9 +57,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets longitude of the coordinates.
+        /// Gets the longitude coordinates.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Longitude
         {
             get
@@ -71,8 +71,8 @@ namespace Tizen.Maps
         /// <summary>
         /// Returns a string that represents this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <returns>Returns a string which presents this object.</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <returns>Returns a string that represents this object.</returns>
         public override string ToString()
         {
             return $"[{Latitude}, {Longitude}]";
@@ -91,9 +91,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 50ae012..801996b 100755 (executable)
@@ -20,7 +20,7 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// List of <see cref="Geocoordinates"/> objects to be used in <see cref="MapService"/> APIs
+    /// List of <see cref="Geocoordinates"/> objects to be used in <see cref="MapService"/> APIs.
     /// </summary>
     internal class GeocoordinatesList : IDisposable
     {
@@ -36,7 +36,7 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Iterator for coordinates in this list
+        /// The iterator for coordinates in this list.
         /// </summary>
         internal IEnumerable<Geocoordinates> Coordinates
         {
@@ -61,9 +61,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index f5ab43d..b17b4f0 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Enumeration of user gestures over map view
+    /// Enumeration for the user gesture over a map view.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum GestureType
     {
         /// <summary>
-        /// Indicates empty gesture.
+        /// Indicates the empty gesture.
         /// </summary>
         None = Interop.ViewGesture.None,
         /// <summary>
@@ -35,15 +35,15 @@ namespace Tizen.Maps
         /// </summary>
         Zoom = Interop.ViewGesture.Zoom,
         /// <summary>
-        /// Indicates the click user gesture
+        /// Indicates the click user gesture.
         /// </summary>
         Click = Interop.ViewGesture.Click,
         /// <summary>
-        /// Indicates the double click user gesture
+        /// Indicates the double click user gesture.
         /// </summary>
         DoubleClick = Interop.ViewGesture.DoubleClick,
         /// <summary>
-        /// Indicates the two-finger click user gesture
+        /// Indicates the two-finger click user gesture.
         /// </summary>
         TwoFingerClick = Interop.ViewGesture.TwoFingerClick,
         /// <summary>
index fb0d8a5..a0fdf0d 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Preferences for geocode searches
+    /// The preference for geocode searches.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public interface IGeocodePreference
     {
         /// <summary>
-        /// Gets or sets a string that presents preferred language.
+        /// Gets or sets a string that presents the preferred language.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <remarks>Language should be specified as an ISO 3166 alpha-2 two letter country-code
+        /// <since_tizen> 3 </since_tizen>
+        /// <remarks>Language should be specified as an ISO 3166 alpha-2 two-letter country-code
         /// followed by ISO 639-1 for the two-letter language code.<br/>e.g. "ko-KR", "en-US".</remarks>
         string Language { get; set; }
 
         /// <summary>
         /// Gets or sets the maximum number of results.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <remarks>Setting negative value will not have any effect on MaxResults value.</remarks>
+        /// <since_tizen> 3 </since_tizen>
+        /// <remarks>Setting negative value will not have any effect on MaxResults value.</remarks>
         int MaxResults { get; set; }
     }
 }
index e32b44d..bb6cab4 100755 (executable)
@@ -20,21 +20,21 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Preferences for place searches
+    /// The preferences for a place search.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public interface IPlaceSearchPreference
     {
         /// <summary>
-        /// Gets or sets distance unit.
+        /// Gets or sets the distance unit.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         DistanceUnit Unit { get; set; }
 
         /// <summary>
-        /// Gets or sets preferred language.
+        /// Gets or sets the preferred language.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>Language should be specified as an ISO 3166 alpha-2 two letter country-code
         /// followed by ISO 639-1 for the two-letter language code.<br/>e.g. "ko-KR", "en-US".</remarks>
         string Language { get; set; }
@@ -42,19 +42,19 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets the maximum number of results.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         int MaxResults { get; set; }
 
         /// <summary>
-        /// Gets or sets a string that represents code of preferred country.
+        /// Gets or sets a string that represents the code of a preferred country.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         string CountryCode { get; set; }
 
         /// <summary>
-        /// Gets or sets search properties as key value pair.
+        /// Gets or sets the search properties as a key value pair.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         IReadOnlyDictionary<string, string> Properties { get; set; }
     }
 }
index e7eedbc..31a34cf 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Preferences for route searches
+    /// The preferences for route search.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public interface IRouteSearchPreference
     {
         /// <summary>
-        /// Gets or sets distance unit.
+        /// Gets or sets the distance unit.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         DistanceUnit Unit { get; set; }
 
         /// <summary>
-        /// Gets or sets route optimization.
+        /// Gets or sets the route optimization.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         RouteOptimization Optimization { get; set; }
 
         /// <summary>
-        /// Gets or sets route transport mode.
+        /// Gets or sets the route transport mode.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         TransportMode Mode { get; set; }
 
         /// <summary>
-        /// Gets or sets route feature weight.
+        /// Gets or sets the route feature weight.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         RouteFeatureWeight RouteFeatureWeight { get; set; }
 
         /// <summary>
-        /// Gets or sets route feature.
+        /// Gets or sets the route feature.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         RouteFeature RouteFeature { get; set; }
 
         /// <summary>
-        /// Gets or sets if searching for alternative routes is enabled.
+        /// Gets or sets if a search for alternative routes is enabled.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         bool SearchAlternativeRoutes { get; set; }
     }
 }
index 111ce73..ba7789b 100755 (executable)
@@ -20,9 +20,9 @@ using ElmSharp;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Event arguments for gesture type map events
+    /// Event arguments for gesture type map events.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class MapGestureEventArgs : EventArgs
     {
         internal MapGestureEventArgs(IntPtr nativeHandle)
@@ -39,39 +39,39 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets type of gesture event.
+        /// Gets the type of gesture event.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public GestureType GestureType { get; }
 
         /// <summary>
         /// Gets screen coordinates in the event.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Point Position { get; }
 
         /// <summary>
         /// Gets the number of fingers detected in the event.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int TouchCount { get; }
 
         /// <summary>
-        /// Gets zoom factor for zoom gesture event.
+        /// Gets the zoom factor for zoom gesture event.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double ZoomFactor { get; }
 
         /// <summary>
-        /// Gets angle of rotation for rotate gesture event.
+        /// Gets the angle of rotation for rotate gesture event.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double RotationAngle { get; }
 
         /// <summary>
-        /// Gets geographical coordinates for the event.
+        /// Gets the geographical coordinates for the event.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Geocoordinates { get; }
     }
 }
index 936552a..4b4b9a6 100755 (executable)
@@ -18,9 +18,9 @@
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Map object
+    /// The map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public abstract class MapObject
     {
         internal MapObject() { }
@@ -28,7 +28,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets visibility of the map object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public abstract bool IsVisible { get; set; }
 
         internal abstract void HandleClickedEvent();
index 4002c3b..32949be 100755 (executable)
@@ -21,9 +21,9 @@ using System.Threading.Tasks;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Map service class for service request
+    /// Map service class for service request.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public partial class MapService : IDisposable
     {
         internal Interop.ServiceHandle handle;
@@ -36,16 +36,16 @@ namespace Tizen.Maps
 
 
         /// <summary>
-        /// Creates a new Maps Service object for given service provider.
+        /// Creates a new maps service object for given service provider.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="serviceProvider">A string which representing name of map service provider</param>
-        /// <param name="serviceProviderKey">A string which representing certificate key to use the map service provider</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="serviceProvider">A string representing the name of the map service provider.</param>
+        /// <param name="serviceProviderKey">A string representing a certificate key to use the map service provider.</param>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.ArgumentException">Thrown when parameters are invalid.</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory, connect to service.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation failed to allocate memory and connect to the service.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
         public MapService(string serviceProvider, string serviceProviderKey)
         {
@@ -57,13 +57,13 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets list of available map service providers.
+        /// Gets the list of available map service providers.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>The list of map service providers.</value>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
-        /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have privileges to access this property.</exception>
+        /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have privilege to access this property.</exception>
         public static IEnumerable<string> Providers
         {
             get
@@ -77,13 +77,13 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets name of map service provider.
+        /// Gets the name of the map service provider.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Provider { get { return _serviceProvider; } }
 
         /// <summary>
-        /// Gets a user consent for map service provider
+        /// Gets a user consent for the map service provider
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
@@ -96,11 +96,11 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets and sets a string representing keys for map service provider
+        /// Gets and sets a string representing keys for the map service provider.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <remarks>Typically, the provider key is issued by each maps provider, after signing up for a plan in the web site.
-        /// Depending on the plan and its provider which you have signed, you might pay for the network traffic.</remarks>
+        /// <since_tizen> 3 </since_tizen>
+        /// <remarks>Typically, the provider key is issued by each maps provider after signing up for a plan in the website.
+        /// Depending on the plan and its provider which you have signed, you might have to pay for the network traffic.</remarks>
         public string ProviderKey
         {
             get
@@ -114,9 +114,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets and sets a filter used for place search result.
+        /// Gets and sets a filter used for the place search result.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceFilter PlaceSearchFilter
         {
             get
@@ -133,9 +133,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets search preferences used for <see cref="GeocodeRequest"/> or <see cref="ReverseGeocodeRequest"/>.
+        /// Gets the search preferences used for <see cref="GeocodeRequest"/> or <see cref="ReverseGeocodeRequest"/>.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IGeocodePreference GeocodePreferences
         {
             get
@@ -145,9 +145,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets search preferences used for <see cref="PlaceSearchRequest"/>.
+        /// Gets the search preferences used for <see cref="PlaceSearchRequest"/>.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IPlaceSearchPreference PlaceSearchPreferences
         {
             get
@@ -157,9 +157,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets search preferences used for <see cref="RouteSearchRequest"/>.
+        /// Gets the search preferences used for <see cref="RouteSearchRequest"/>.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IRouteSearchPreference RouteSearchPreferences
         {
             get
@@ -169,9 +169,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets and sets search preferences.
+        /// Gets and sets the search preferences.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public SearchPreference Preferences
         {
             get
@@ -217,11 +217,11 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Checks if the Maps Service supports given request.
+        /// Checks if the maps service supports the given request.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="type">Request type to check</param>
-        /// <returns>Returns true if the Maps Service supports a request, otherwise false.</returns>
+        /// <returns>Returns true if the maps service supports a request, otherwise false.</returns>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
@@ -234,11 +234,11 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Checks if the Maps Service supports given data feature.
+        /// Checks if the maps service supports a given data feature.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="data">Data feature to check</param>
-        /// <returns>Returns true if the Maps Service supports a data feature, otherwise false.</returns>
+        /// <since_tizen> 3 </since_tizen>
+           /// <param name="data">Data feature to check.</param>
+        /// <returns>Returns true if the maps service supports a data feature, otherwise false.</returns>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
@@ -251,105 +251,105 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Creates geocode search request for given free-formed address string.
+        /// Creates a geocode search request for the given free-formed address string.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="address">A string which representing free-formed address</param>
-        /// <returns>GeocodeRequest object created with address string</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="address">A string representing free-formed address.</param>
+        /// <returns>Returns a GeocodeRequest object created with an address string.</returns>
         public GeocodeRequest CreateGeocodeRequest(string address)
         {
             return new GeocodeRequest(this, address);
         }
 
         /// <summary>
-        /// Creates geocode search request for given free-formed address string, within the specified boundary.
+        /// Creates a geocode search request for the given free-formed address string, within the specified boundary.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="address">A string which representing free-formed address</param>
-        /// <param name="boundary">An instance of Area object which representing interested area</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="address">A string representing the free-formed address.</param>
+        /// <param name="boundary">An instance of Area object representing the interested area.</param>
         /// <seealso cref="Area"/>
-        /// <returns>GeocodeRequest object created with address string and specified boundary</returns>
+        /// <returns>Returns a GeocodeRequest object created with an address string and a specified boundary.</returns>
         public GeocodeRequest CreateGeocodeRequest(string address, Area boundary)
         {
             return new GeocodeRequest(this, address, boundary);
         }
 
         /// <summary>
-        /// Creates geocode search request for given structured address.
+        /// Creates a geocode search request for the given structured address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="address">A string which representing address of interest</param>
-        /// <returns>Returns GeocodeRequest object created with structured address</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="address">A string representing the address of interest.</param>
+        /// <returns>Returns a GeocodeRequest object created with a structured address.</returns>
         public GeocodeRequest CreateGeocodeRequest(PlaceAddress address)
         {
             return new GeocodeRequest(this, address);
         }
 
         /// <summary>
-        /// Creates a reverse geocode search request for given latitude and longitude.
+        /// Creates a reverse geocode search request for the given latitude and longitude.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="latitude">Latitude of interested place</param>
-        /// <param name="longitude">Longitude of interested place</param>
-        /// <returns>Returns ReverseGeocodeRequest object created with location coordinates</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="latitude">Latitude of the interested place.</param>
+        /// <param name="longitude">Longitude of the interested place.</param>
+        /// <returns>Returns a ReverseGeocodeRequest object created with the location coordinates.</returns>
         public ReverseGeocodeRequest CreateReverseGeocodeRequest(double latitude, double longitude)
         {
             return new ReverseGeocodeRequest(this, latitude, longitude);
         }
 
         /// <summary>
-        /// Creates a reverse geocode search request for given position coordinates list.
+        /// Creates a reverse geocode search request for the given position coordinates list.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">Coordinates list with [2 ~ 100] coordinates</param>
-        /// <returns>Returns MultiReverseGeocodeRequest object created with list of location coordinates</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">Coordinates list with [2 ~ 100] coordinates.</param>
+        /// <returns>Returns a MultiReverseGeocodeRequest object created with a list of location coordinates.</returns>
         public MultiReverseGeocodeRequest CreateMultiReverseGeocodeRequest(IEnumerable<Geocoordinates> coordinates)
         {
             return new MultiReverseGeocodeRequest(this, coordinates);
         }
 
         /// <summary>
-        /// Creates a route search request for origin and destination points.
+        /// Creates a route search request for the origin and destination points.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="from">Starting point</param>
-        /// <param name="to">Destination</param>
-        /// <returns>Returns RouteSearchRequest object created with origin and destination coordinates</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="from">Starting point.</param>
+        /// <param name="to">Destination.</param>
+        /// <returns>Returns a RouteSearchRequest object created with the origin and destination coordinates.</returns>
         public RouteSearchRequest CreateRouteSearchRequest(Geocoordinates from, Geocoordinates to)
         {
             return new RouteSearchRequest(this, from, to);
         }
 
         /// <summary>
-        /// Creates a place search request for specified search radius around a given coordinates position.
+        /// Creates a place search request for specified search radius around a given coordinates position.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">A geographical coordinates of center</param>
-        /// <param name="distance">A double value which representing radius of area to search places</param>
-        /// <returns>Returns PlaceSearchRequest object created with location coordinates and search radius</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">Geographical coordinates of the center.</param>
+        /// <param name="distance">A double value representing the radius of an area to search places.</param>
+        /// <returns>Returns a PlaceSearchRequest object created with the location coordinates and search radius.</returns>
         public PlaceSearchRequest CreatePlaceSearchRequest(Geocoordinates coordinates, int distance)
         {
             return new PlaceSearchRequest(this, coordinates, distance);
         }
 
         /// <summary>
-        /// Creates a place search request for places within specified boundary.
+        /// Creates a place search request for places within specified boundary.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="boundary">An instance of Area object which representing area to search interested places</param>
-        /// <returns>Returns PlaceSearchRequest object created with specified boundary</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="boundary">An instance of Area object representing and area to search interested places.</param>
+        /// <returns>Returns a PlaceSearchRequest object created with a specified boundary.</returns>
         public PlaceSearchRequest CreatePlaceSearchRequest(Area boundary)
         {
             return new PlaceSearchRequest(this, boundary);
         }
 
         /// <summary>
-        /// Creates a place search request for free-formed address within boundary.
+        /// Creates a place search request for a free-formed address within the boundary.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="address">A string which representing free-formed address</param>
-        /// <param name="boundary">An instance of Area object which representing area to search interested places</param>
-        /// <returns>Returns PlaceSearchRequest object created with address string and specified boundary</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="address">A string which represents a free-formed address.</param>
+        /// <param name="boundary">An instance of area object representing an area to search interested places.</param>
+        /// <returns>Returns a PlaceSearchRequest object created with an address string and a specified boundary.</returns>
         public PlaceSearchRequest CreatePlaceSearchRequest(string address, Area boundary)
         {
             return new PlaceSearchRequest(this, address, boundary);
@@ -372,9 +372,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index bc9e555..6aaaa86 100755 (executable)
@@ -21,9 +21,9 @@ using System.Threading.Tasks;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Base class for map service request
+    /// Base class for a map service request.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     /// <typeparam name="T"></typeparam>
     public abstract class MapServiceRequest<T> : IDisposable
     {
@@ -40,8 +40,8 @@ namespace Tizen.Maps
         /// <summary>
         /// Creates a map service request.
         /// </summary>
-        /// <param name="service">map service object</param>
-        /// <param name="type">Request type</param>
+        /// <param name="service">Map service object.</param>
+        /// <param name="type">Request type.</param>
         internal MapServiceRequest(MapService service, ServiceRequestType type)
         {
             _service = service;
@@ -49,17 +49,17 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Sends a request to map service provider.
+        /// Sends a request to the map service provider.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <returns>Response from map service provider</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <returns>Response from the map service provider.</returns>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
         /// <exception cref="System.InvalidOperationException">Thrown when the result is invalid.</exception>
-        /// <exception cref="System.ArgumentException">Thrown when arguments are invalid</exception>
+        /// <exception cref="System.ArgumentException">Thrown when arguments are invalid.</exception>
         public async Task<IEnumerable<T>> GetResponseAsync()
         {
             IEnumerable<T> task = null;
@@ -105,9 +105,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index e10448f..90bfd43 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Map View Type (theme)
+    /// The map view type (theme).
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum MapTypes
     {
         /// <summary>
-        /// Indicates normal street theme.
+        /// Indicates the normal street theme.
         /// </summary>
         Normal = Interop.ViewType.Normal,
         /// <summary>
-        /// Indicates satellite theme.
+        /// Indicates the satellite theme.
         /// </summary>
         Satellite = Interop.ViewType.Satellite,
         /// <summary>
-        /// Indicates terrain theme.
+        /// Indicates the terrain theme.
         /// </summary>
         Terrain = Interop.ViewType.Terrain,
         /// <summary>
-        /// Indicates hybrid theme, has both satellite and normal theme.
+        /// Indicates the hybrid theme that has both satellite and normal theme.
         /// </summary>
         Hybrid = Interop.ViewType.Hybrid,
     }
index 318874d..9ba67f6 100755 (executable)
@@ -25,7 +25,7 @@ namespace Tizen.Maps
     /// <summary>
     /// Map View class to show a map on the screen.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class MapView : Layout, IDisposable
     {
         internal Interop.ViewHandle handle;
@@ -47,16 +47,16 @@ namespace Tizen.Maps
         private event EventHandler _viewReadyEventHandler;
 
         /// <summary>
-        /// Creates the view and link it to the instance of map service.
+        /// Creates a view and links it to the instance of a map service.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="parent">An instance of <see cref="EvasObject"/> object which map view will be drawn</param>
-        /// <param name="service">An instance of <see cref="MapService"/> object</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="parent">An instance of <see cref="EvasObject"/> object for which a map view will be drawn.</param>
+        /// <param name="service">An instance of <see cref="MapService"/> object.</param>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
-        /// <exception cref="System.ArgumentException">Thrown when parameters are invalid</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory, connect to service</exception>
+        /// <exception cref="System.ArgumentException">Thrown when parameters are invalid.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation failed to allocate memory, and connect to the service.</exception>
         public MapView(EvasObject parent, MapService service) : base(parent)
         {
             handle = new Interop.ViewHandle(service.handle, this);
@@ -71,10 +71,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes event handlers to deliver scrolled gesture event.
+        /// Adds or removes event handlers to deliver scrolled gesture event.
         /// </summary>
-        /// <value>Event handlers to get scrolled gesture event</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>Event handlers to get a scrolled gesture event.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         public event EventHandler<MapGestureEventArgs> Scrolled
         {
@@ -98,10 +98,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes event handlers to deliver zoomed gesture event.
+        /// Adds or removes event handlers to deliver zoomed gesture event.
         /// </summary>
-        /// <value>Event handlers to get zoomed gesture event</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>Event handlers to get a zoomed gesture event.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         public event EventHandler<MapGestureEventArgs> TwoFingerZoomed
         {
@@ -125,10 +125,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes event handlers to deliver clicked gesture event.
+        /// Adds or removes event handlers to deliver clicked gesture event.
         /// </summary>
-        /// <value>Event handlers to get clicked gesture event</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>Event handlers to get a clicked gesture event.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         public event EventHandler<MapGestureEventArgs> Clicked
         {
@@ -152,10 +152,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes event handlers to deliver double-clicked gesture event.
+        /// Adds or removes event handlers to deliver double-clicked gesture event.
         /// </summary>
-        /// <value>Event handlers to get double-clicked gesture event</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>Event handlers to get a double-clicked gesture event.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         public event EventHandler<MapGestureEventArgs> DoubleClicked
         {
@@ -179,10 +179,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes event handlers to deliver clicked gesture event with two-fingers.
+        /// Adds or removes event handlers to deliver clicked gesture event with two-fingers.
         /// </summary>
-        /// <value>Event handlers to get clicked gesture event</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>Event handlers to get a clicked gesture event.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         public event EventHandler<MapGestureEventArgs> TwoFingerClicked
         {
@@ -206,10 +206,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes event handlers to deliver rotated gesture event.
+        /// Adds or removes event handlers to deliver rotated gesture event.
         /// </summary>
-        /// <value>Event handlers to get rotated gesture event</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>Event handlers to get a rotated gesture event.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         public event EventHandler<MapGestureEventArgs> TwoFingerRotated
         {
@@ -234,10 +234,10 @@ namespace Tizen.Maps
 
 
         /// <summary>
-        /// Adds or removes event handlers to deliver long-pressed gesture event.
+        /// Adds or removes event handlers to deliver long-pressed gesture event.
         /// </summary>
-        /// <value>Event handlers to get long-pressed gesture event</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>Event handlers to get a long-pressed gesture event.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         public event EventHandler<MapGestureEventArgs> LongPressed
         {
@@ -261,10 +261,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes event handlers to deliver a event representing the view is ready to be used.
+        /// Adds or removes event handlers to deliver an event representing a view ready to be used.
         /// </summary>
-        /// <value>Event handlers to get view ready event</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>Event handlers to get a view ready event.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         public event EventHandler ViewReady
         {
@@ -283,10 +283,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets current zoom level.
+        /// Gets or sets the current zoom level.
         /// </summary>
-        /// <value>It is an integer value that representing current zoom level.</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>It is an integer value representing the current zoom level.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -306,10 +306,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets minimum zoom level.
+        /// Gets or sets the minimum zoom level.
         /// </summary>
-        /// <value>It is an integer value that limits minimal zoom level within range of current map plug-in supported.</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>It is an integer value that limits minimal zoom level within a range of the current map plug-in support.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -329,10 +329,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets maximum zoom level.
+        /// Gets or sets the maximum zoom level.
         /// </summary>
-        /// <value>It is an integer value that limits maximum zoom level within range of current map plug-in supported.</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>It is an integer value that limits maximum zoom level within a range of the current map plug-in support.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -352,10 +352,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets orientation on the map view.
+        /// Gets or sets the orientation on the map view.
         /// </summary>
-        /// <value>It is an integer value from 0 to 360 that indicates orientation of the map view</value>
-        /// <since_tizen>3</since_tizen>
+        /// <value>It is an integer value from 0 to 360 that indicates the orientation of the map view.</value>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -377,7 +377,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets theme type of the map view.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -399,7 +399,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Indicates whether the map should show the 3D buildings layer.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -421,7 +421,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Indicates whether the map should show the traffic layer.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -443,7 +443,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Indicates whether the map should show the public transit layer.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -465,7 +465,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Indicates whether the scale-bar is enabled or not.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -493,7 +493,7 @@ namespace Tizen.Maps
         /// Each language tag is composed of one or more "subtags" separated by hyphens (-).
         /// Each subtag is composed of basic Latin letters or digits only.
         /// For example, "ko-KR" for Korean, "en-US" for American English.</value>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -516,7 +516,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets geographical coordinates for map view's center.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <privilege>http://tizen.org/privilege/internet</privilege>
         /// <privilege>http://tizen.org/privilege/network.get</privilege>
@@ -537,9 +537,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets a list of map object added to map view.
+        /// Gets a list of the map object added to map view.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<MapObject> Children
         {
             get
@@ -549,32 +549,32 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Changes geographical coordinates to screen coordinates.
+        /// Changes the geographical coordinates to screen coordinates.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">Geographical coordinates</param>
-        /// <returns>Returns an instance of screen coordinates on the current screen</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">Geographical coordinates.</param>
+        /// <returns>Returns an instance of the screen coordinates on the current screen.</returns>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
         /// <exception cref="System.ArgumentException">Thrown when the value is invalid.</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory, connect to service.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation failed to allocate memory and connect to the service.</exception>
         public Point GeolocationToScreen(Geocoordinates coordinates)
         {
             return handle.GeolocationToScreen(coordinates.handle);
         }
 
         /// <summary>
-        /// Changes screen coordinates to geographical coordinates.
+        /// Changes the screen coordinates to geographical coordinates.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="screenCoordinates">Screen coordinates</param>
-        /// <returns>Returns an instance of geographical coordinates object.</returns>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="screenCoordinates">Screen coordinates.</param>
+        /// <returns>Returns an instance of the geographical coordinates object.</returns>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
         /// <exception cref="System.ArgumentException">Thrown when the value is invalid.</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory, connect to service.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation failed to allocate memory and connect to the service.</exception>
         public Geocoordinates ScreenToGeolocation(Point screenCoordinates)
         {
             return new Geocoordinates(handle.ScreenToGeolocation(screenCoordinates));
@@ -583,13 +583,13 @@ namespace Tizen.Maps
         /// <summary>
         /// Adds a map object to map view.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="child">An instance of map object to be added</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="child">An instance of the map object to be added.</param>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
         /// <exception cref="System.ArgumentException">Thrown when the value is invalid.</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory, connect to service.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation failed to allocate memory and connect to the service.</exception>
         public void Add(MapObject child)
         {
             Log.Info(string.Format("Add a object"));
@@ -605,16 +605,16 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Removes a map object from map view.
+        /// Removes a map object from the map view.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="child">An instance of map object to be removed</param>
-        /// <remarks>Once removed, the child object will be become invalid</remarks>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="child">An instance of the map object to be removed.</param>
+        /// <remarks>Once removed, the child object will be become invalid.</remarks>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
         /// <exception cref="System.ArgumentException">Thrown when the value is invalid.</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory, connect to service.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory and connect to the service.</exception>
         public void Remove(MapObject child)
         {
             Log.Info(string.Format("Remove a object"));
@@ -629,13 +629,13 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Removes all map objects from map view.
+        /// Removes all map objects from the map view.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory, connect to service.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation failed to allocate memory and connect to the service.</exception>
         public void RemoveAll()
         {
             Log.Info(string.Format("Remove all of objects"));
@@ -648,17 +648,17 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Captures a snapshot of map view
+        /// Captures a snapshot of the map view.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="type">Type of file format</param>
-        /// <param name="quality">A integer value which representing quality for encoding, from 1 to 100</param>
-        /// <param name="path">A string which representing The file path for snapshot</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="type">Type of file format.</param>
+        /// <param name="quality">An integer value representing the quality for encoding from 1 to 100.</param>
+        /// <param name="path">A string representing the file path for a snapshot.</param>
         /// <privilege>http://tizen.org/privilege/mapservice</privilege>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
         /// <exception cref="System.ArgumentException">Thrown when the value is invalid.</exception>
-        /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory, connect to service.</exception>
+        /// <exception cref="System.InvalidOperationException">Thrown when a native operation failed to allocate memory and connect to the service.</exception>
         public void CaptureSnapshot(SnapshotType type, int quality, string path)
         {
             var err = Interop.ViewSnapshot.ViewCaptureSnapshot(handle, (Interop.ViewSnapshotFormatType)type, quality, path);
@@ -767,9 +767,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 1655e65..45f6c11 100755 (executable)
@@ -20,9 +20,9 @@ using ElmSharp;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Marker map object
+    /// The marker map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Marker : MapObject, IDisposable
     {
         internal Interop.MarkerHandle handle;
@@ -38,15 +38,15 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets clicked event handlers.
+        /// Gets or sets the clicked event handlers.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler Clicked;
 
         /// <summary>
-        /// Gets or sets marker's visibility.
+        /// Gets or sets the marker's visibility.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public override bool IsVisible
         {
             get
@@ -60,9 +60,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets geographical coordinates for this marker.
+        /// Gets or sets the geographical coordinates for this marker.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Coordinates
         {
             get
@@ -79,9 +79,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets a string representing image file path for this marker.
+        /// Gets or sets a string representing the image file path for this marker.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string ImagePath
         {
             get
@@ -95,9 +95,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets screen size for this marker.
+        /// Gets or sets the screen size for this marker.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Size MarkerSize
         {
             get
@@ -111,10 +111,10 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets z-order for this marker.
+        /// Gets or sets the z-order for this marker.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <value>The integer value is 0 in default, and must be in range of from -100 to 100.</value>
+        /// <since_tizen> 3 </since_tizen>
+        /// <value>The integer value is 0 by default, and must be in the range of -100 to 100.</value>
         public int ZOrder
         {
             get
@@ -128,20 +128,20 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Changes marker size.
+        /// Changes the marker size.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="newSize">New size</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="newSize">New size.</param>
         public void Resize(Size newSize)
         {
             MarkerSize = newSize;
         }
 
         /// <summary>
-        /// Changes marker coordinates.
+        /// Changes the marker coordinates.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="newPosition">New position for marker</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="newPosition">New position for the marker.</param>
         public void Move(Geocoordinates newPosition)
         {
             Coordinates = newPosition;
@@ -175,9 +175,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
@@ -189,18 +189,18 @@ namespace Tizen.Maps
     }
 
     /// <summary>
-    /// Pin type marker map object
+    /// Pin type the marker map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Pin : Marker
     {
         private const string defaultImagePath = "/usr/share/dotnet.tizen/framework/res/maps_marker_pin_48.png";
 
         /// <summary>
-        /// Creates a Pin type marker.
+        /// Creates a pin type marker.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">Marker coordinates</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">Marker coordinates.</param>
         /// <exception cref="System.ArgumentException">Thrown when input coordinates are invalid.</exception>
         public Pin(Geocoordinates coordinates)
             : base(coordinates, defaultImagePath, Interop.ViewMarkerType.Pin)
@@ -208,18 +208,18 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Creates a Pin type marker.
+        /// Creates a pin type marker.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">Marker coordinates</param>
-        /// <param name="imagePath">Image file path for Marker</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">Marker coordinates.</param>
+        /// <param name="imagePath">Image file path for the Marker.</param>
         /// <remarks>
-        /// http://tizen.org/privilege/mediastorage is needed if the file path are relevant to media storage.
-        /// http://tizen.org/privilege/externalstorage is needed if the file path are relevant to external storage.
+        /// http://tizen.org/privilege/mediastorage is needed if the file path is relevant to media storage.
+        /// http://tizen.org/privilege/externalstorage is needed if the file path is relevant to external storage.
         /// </remarks>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
-        /// <exception cref="System.ArgumentException">Thrown when input coordinates or imagePath are invalid.</exception>
+        /// <exception cref="System.ArgumentException">Thrown when the input coordinates or imagePath is invalid.</exception>
         public Pin(Geocoordinates coordinates, string imagePath)
             : base(coordinates, imagePath, Interop.ViewMarkerType.Pin)
         {
@@ -227,18 +227,18 @@ namespace Tizen.Maps
     }
 
     /// <summary>
-    /// Sticker type marker map object
+    /// Sticker type marker map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Sticker : Marker
     {
         private const string defaultImagePath = "/usr/share/dotnet.tizen/framework/res/maps_marker_sticker_48.png";
 
         /// <summary>
-        /// Creates a Sticker type marker.
+        /// Creates a sticker type marker.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">Marker coordinates</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">Marker coordinates.</param>
         /// <exception cref="System.ArgumentException">Thrown when input coordinates are invalid.</exception>
         public Sticker(Geocoordinates coordinates)
             : base(coordinates, defaultImagePath, Interop.ViewMarkerType.Sticker)
@@ -246,18 +246,18 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Creates a Sticker type marker.
+        /// Creates a sticker type marker.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">Marker coordinates</param>
-        /// <param name="imagePath">Image file path for Marker</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">Marker coordinates.</param>
+        /// <param name="imagePath">Image file path for Marker.</param>
         /// <remarks>
-        /// http://tizen.org/privilege/mediastorage is needed if input or output path are relevant to media storage.
-        /// http://tizen.org/privilege/externalstorage is needed if input or output path are relevant to external storage.
+        /// http://tizen.org/privilege/mediastorage is needed if the input or output path are relevant to media storage.
+        /// http://tizen.org/privilege/externalstorage is needed if the input or output path are relevant to external storage.
         /// </remarks>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
         /// <exception cref="System.UnauthorizedAccessException">Thrown when application does not have some privilege to access this method.</exception>
-        /// <exception cref="System.ArgumentException">Thrown when input coordinates or imagePath are invalid.</exception>
+        /// <exception cref="System.ArgumentException">Thrown when the input coordinates or imagePath is invalid.</exception>
         public Sticker(Geocoordinates coordinates, string imagePath)
             : base(coordinates, imagePath, Interop.ViewMarkerType.Sticker)
         {
index 2794961..ac1a58d 100755 (executable)
@@ -20,9 +20,9 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Multiple Reverse geocode Request for Tizen map service
+    /// Multiple reverse geocode request for Tizen map service.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class MultiReverseGeocodeRequest : MapServiceRequest<PlaceAddress>
     {
         private Interop.MultiReverseGeocodeCallback _geocodeCallback;
index 2c9fe11..ff35212 100755 (executable)
@@ -101,7 +101,7 @@ 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/>
 
-Conversion of screen coordinates to geographical and vise versa.<p/>
+Conversion of screen coordinates to geographical and vice versa.<p/>
 
 User's gesture support:<br/>
  - Receive the event of the user gesture.<br/>
index 9a9e7f0..d84e8a0 100755 (executable)
@@ -20,9 +20,9 @@ using EvasObject = ElmSharp.EvasObject;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Overlay map object
+    /// Overlay map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Overlay : MapObject, IDisposable
     {
         internal Interop.OverlayHandle handle;
@@ -30,10 +30,10 @@ namespace Tizen.Maps
         /// <summary>
         /// Creates a normal overlay map object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="coordinates"></param>
         /// <param name="objectToContain"></param>
-        /// <exception cref="ArgumentException">Thrown when input coordinates or objectToContain are invalid</exception>
+        /// <exception cref="ArgumentException">Thrown when the input coordinates or objectToContain are invalid.</exception>
         public Overlay(Geocoordinates coordinates, EvasObject objectToContain)
             : this(coordinates, objectToContain, Interop.ViewOverlayType.Normal)
         {
@@ -50,9 +50,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets visibility of overlay map object.
+        /// Gets or sets the visibility of an overlay map object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public override bool IsVisible
         {
             get { return handle.IsVisible; }
@@ -60,9 +60,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets geographical coordinates for overlay map object.
+        /// Gets or sets geographical coordinates for an overlay map object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Coordinates
         {
             get
@@ -78,9 +78,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets minimum zoom level for overlay map object.
+        /// Gets or sets minimum zoom level for an overlay map object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int MinimumZoomLevel
         {
             get
@@ -94,9 +94,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets maximum zoom lever for overlay map object.
+        /// Gets or sets maximum zoom lever for an overlay map object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int MaximumZoomLevel
         {
             get
@@ -138,9 +138,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
@@ -150,19 +150,19 @@ namespace Tizen.Maps
     }
 
     /// <summary>
-    /// Bubble overlay map object
+    /// The bubble overlay map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class BubbleOverlay : Overlay
     {
         /// <summary>
-        /// Creates a Bubble overlay.
+        /// Creates a bubble overlay.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">The geographical coordinates to be pointed</param>
-        /// <param name="objectToContain">The EvasObject to be shown</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">The geographical coordinates to be pointed.</param>
+        /// <param name="objectToContain">The EvasObject to be shown.</param>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
-        /// <exception cref="ArgumentException">Thrown when input coordinates or objectToContain are invalid</exception>
+        /// <exception cref="ArgumentException">Thrown when the input coordinates or objectToContain are invalid.</exception>
         public BubbleOverlay(Geocoordinates coordinates, EvasObject objectToContain)
             : base(coordinates, objectToContain, Interop.ViewOverlayType.Bubble)
         {
@@ -170,19 +170,19 @@ namespace Tizen.Maps
     }
 
     /// <summary>
-    /// Box Overlay map object
+    /// The box overlay map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class BoxOverlay : Overlay
     {
         /// <summary>
-        /// Creates a Box overlay.
+        /// Creates a box overlay.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">The geographical coordinates to be pointed</param>
-        /// <param name="objectToContain">The EvasObject to be shown</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">The geographical coordinates to be pointed.</param>
+        /// <param name="objectToContain">The EvasObject to be shown.</param>
         /// <exception cref="System.NotSupportedException">Thrown when the required feature is not supported.</exception>
-        /// <exception cref="ArgumentException">Thrown when input coordinates or objectToContain are invalid</exception>
+        /// <exception cref="ArgumentException">Thrown when the input coordinates or objectToContain are invalid</exception>
         public BoxOverlay(Geocoordinates coordinates, EvasObject objectToContain)
             : base(coordinates, objectToContain, Interop.ViewOverlayType.Box)
         {
index 70f6bf6..d9a7dfb 100755 (executable)
@@ -20,9 +20,9 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place information, used in Place Discovery and Search
+    /// Place information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Place : IDisposable
     {
         internal Interop.PlaceHandle handle;
@@ -33,9 +33,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets ID string for the place.
+        /// Gets an ID string for the place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Id
         {
             get
@@ -47,7 +47,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets name string for the place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Name
         {
             get
@@ -57,9 +57,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets view URI for the place.
+        /// Gets view URI for the place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Uri
         {
             get
@@ -69,9 +69,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets distance for the place from the center.
+        /// Gets distance for the place from the center.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int Distance
         {
             get
@@ -81,9 +81,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets geographical location for the place.
+        /// Gets geographical location for the place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Coordinates
         {
             get
@@ -93,9 +93,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets address for the place.
+        /// Gets an address for the place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceAddress Address
         {
             get
@@ -105,9 +105,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets rating for the place.
+        /// Gets rating for the place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceRating Rating
         {
             get
@@ -117,9 +117,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets supplier link for the place.
+        /// Gets supplier link for the place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceLink Supplier
         {
             get
@@ -129,9 +129,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets related link for the place.
+        /// Gets related link for the place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceLink Related
         {
             get
@@ -141,9 +141,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets all properties attached to this place.
+        /// Gets all the properties attached to this place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IDictionary<string, string> Properties
         {
             get
@@ -155,9 +155,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets all categories attached to this place.
+        /// Gets all the categories attached to this place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<PlaceCategory> Categories
         {
             get
@@ -169,9 +169,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets all attributes attached to this place.
+        /// Gets all the attributes attached to this place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<PlaceAttribute> Attributes
         {
             get
@@ -183,9 +183,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets all contacts attached to this place.
+        /// Gets all the contacts attached to this place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<PlaceContact> Contacts
         {
             get
@@ -197,9 +197,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets all editorials attached to this place.
+        /// Gets all the editorials attached to this place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<PlaceEditorial> Editorials
         {
             get
@@ -211,9 +211,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets all images attached to this place.
+        /// Gets all the images attached to this place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<PlaceImage> Images
         {
             get
@@ -225,9 +225,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets all reviews attached to this place.
+        /// Gets all the reviews attached to this place.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<PlaceReview> Reviews
         {
             get
@@ -251,9 +251,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 0a119ed..a51c37e 100755 (executable)
@@ -20,17 +20,17 @@ using System.ComponentModel;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Address information for the map point used in Geocode and Reverse Geocode requests.
+    /// Address information for the map point used in geocode and reverse geocode requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceAddress : IDisposable
     {
         internal Interop.AddressHandle handle;
 
         /// <summary>
-        /// Constructs map address object.
+        /// Constructs map address object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory.</exception>
         public PlaceAddress()
         {
@@ -45,7 +45,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a building number for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Building
         {
             get
@@ -61,7 +61,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a city name for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string City
         {
             get
@@ -77,7 +77,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a country name for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Country
         {
             get
@@ -93,7 +93,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a country code for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string CountryCode
         {
             get
@@ -109,7 +109,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a county for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string County
         {
             get
@@ -125,7 +125,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a district name for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string District
         {
             get
@@ -141,7 +141,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a free text associated with this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string FreeText
         {
             get
@@ -171,7 +171,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a postal code for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string PostalCode
         {
             get
@@ -187,7 +187,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a state name for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string State
         {
             get
@@ -203,7 +203,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a street name for this address.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Street
         {
             get
@@ -219,7 +219,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Returns a string that represents this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>Returns a string which presents this object.</returns>
         public override string ToString()
         {
@@ -239,9 +239,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 86ba5f3..c09ef3c 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="MapService"/> APIs
+    /// List of <see cref="PlaceAddress"/> objects to be used in <see cref="MapService"/> APIs.
     /// </summary>
     internal class PlaceAddressList : IDisposable
     {
@@ -71,9 +71,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index a6307fa..ac6f7e2 100755 (executable)
@@ -19,9 +19,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Attributes information, used in Place Discovery and Search requests
+    /// Place attributes information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceAttribute
     {
         private string _id;
@@ -43,25 +43,25 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets an ID for the place attribute.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Id { get { return _id; } }
 
         /// <summary>
         /// Gets a label for the place attribute.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Label { get { return _label; } }
 
         /// <summary>
         /// Gets a text for the place attribute.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Text { get { return _text; } }
 
         /// <summary>
         /// Returns a string that represents this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>Returns a string which presents this object.</returns>
         public override string ToString()
         {
index 16ce43c..3013397 100755 (executable)
@@ -19,17 +19,17 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Category information, used in Place Discovery and Search requests
+    /// Place category information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceCategory : IDisposable
     {
         internal Interop.PlaceCategoryHandle handle;
 
         /// <summary>
-        /// Constructs search category object.
+        /// Constructs search category object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory.</exception>
         public PlaceCategory()
         {
@@ -45,7 +45,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets an ID for this category.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Id
         {
             get { return handle.Id; }
@@ -55,7 +55,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets a name for this category.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Name
         {
             get { return handle.Name; }
@@ -63,9 +63,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets an URL for this category.
+        /// Gets or sets a URL for this category.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Url
         {
             get { return handle.Url; }
@@ -75,7 +75,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Returns a string that represents this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>Returns a string which presents this object.</returns>
         public override string ToString()
         {
@@ -95,9 +95,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 8d6c467..5cccc5f 100755 (executable)
@@ -20,9 +20,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Contact information, used in Place Discovery and Search requests
+    /// Place contact information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceContact
     {
         private string _label;
@@ -43,25 +43,25 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets an ID for this place contact.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Id { get { return _type; } }
 
         /// <summary>
         /// Gets a label for this place contact.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Label { get { return _label; } }
 
         /// <summary>
         /// Gets a value for this place contact.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Value { get { return _value; } }
 
         /// <summary>
         /// Returns a string that represents this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>Returns a string which presents this object.</returns>
         public override string ToString()
         {
index ba4ff6a..d206b93 100755 (executable)
@@ -19,9 +19,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Editorial information, used in Place Discovery and Search requests
+    /// Place editorial information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceEditorial
     {
         private string _description;
@@ -42,25 +42,25 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a description for this place editorial.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Description { get { return _description; } }
 
         /// <summary>
         /// Gets a language for this place editorial.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Language { get { return _language; } }
 
         /// <summary>
         /// Gets an instance of <see cref="PlaceMedia"/> object which representing media for this place editorial.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceMedia Media { get { return _media; } }
 
         /// <summary>
         /// Returns a string that represents this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>Returns a string which presents this object.</returns>
         public override string ToString()
         {
index 747c0d7..591bd16 100755 (executable)
@@ -19,17 +19,17 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Filter information, used in Place Discovery and Search requests
+    /// Place filter information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceFilter : IDisposable
     {
         internal Interop.PlaceFilterHandle handle;
 
         /// <summary>
-        /// Constructs new place filter.
+        /// Constructs new place filter.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <exception cref="System.InvalidOperationException">Thrown when native operation failed to allocate memory.</exception>
         public PlaceFilter()
         {
@@ -37,12 +37,12 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets an free-formed address string for this place filter.
+        /// Gets or sets a free-formed address string for this place filter.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>Depending on maps provider which the application has selected,
         /// it may treat <see cref="PlaceFilter.Name"/>, <see cref="PlaceFilter.Keyword"/> and <see cref="PlaceFilter.Address"/>
-        /// as same kind of strings to search places.</remarks>
+        /// as the same kind of strings to search places.</remarks>
         public string Address
         {
             get
@@ -58,7 +58,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets an instance of <see cref="PlaceCategory"/> object for this place filter.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceCategory Category
         {
             get
@@ -74,10 +74,10 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets a keyword for this place filter.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>Depending on maps provider which the application has selected,
         /// it may treat <see cref="PlaceFilter.Name"/>, <see cref="PlaceFilter.Keyword"/> and <see cref="PlaceFilter.Address"/>
-        /// as same kind of strings to search places.</remarks>
+        /// as the same kind of strings to search places.</remarks>
         public string Keyword
         {
             get
@@ -93,10 +93,10 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets a name for this place filter.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>Depending on maps provider which the application has selected,
         /// it may treat <see cref="PlaceFilter.Name"/>, <see cref="PlaceFilter.Keyword"/> and <see cref="PlaceFilter.Address"/>
-        /// as same kind of strings to search places.</remarks>
+        /// as the same kind of strings to search places.</remarks>
         public string Name
         {
             get
@@ -122,9 +122,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 220a199..4d35d33 100755 (executable)
@@ -19,9 +19,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Image information, used in Place Discovery and Search requests
+    /// Place image information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceImage
     {
         private string _id;
@@ -44,37 +44,37 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets an ID for this place image.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Id { get { return _id; } }
 
         /// <summary>
         /// Gets an URL for this place image.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Url { get { return _url; } }
 
         /// <summary>
-        /// Gets width for this place image.
+        /// Gets the width for this place image.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int Width { get { return _width; } }
 
         /// <summary>
-        /// Gets height for this place image.
+        /// Gets the height for this place image.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int Height { get { return _height; } }
 
         /// <summary>
-        /// Gets an object which representing user link for this place image.
+        /// Gets an object representing the user link for this place image.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceLink UserLink { get { return _userLink; } }
 
         /// <summary>
-        /// Gets an object which representing image media for this place image.
+        /// Gets an object representing the image media for this place image.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceMedia ImageMedia { get { return _media; } }
     }
 }
index bdc6a06..b81622d 100755 (executable)
@@ -20,9 +20,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Link Object information, used in Place Discovery and Search requests
+    /// Place link object information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceLink
     {
         private string _id;
@@ -39,27 +39,27 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets a string which representing ID for this place link.
+        /// Gets a string representing the ID for this place link.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Id { get { return _id; } }
 
         /// <summary>
-        /// Gets a string which representing name for this place link.
+        /// Gets a string representing the name for this place link.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Name { get { return _name; } }
 
         /// <summary>
-        /// Gets a string which representing link for this place link.
+        /// Gets a string representing the link for this place link.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Link { get { return _link; } }
 
         /// <summary>
-        /// Gets a string which representing type for this place link.
+        /// Gets a string representing the type for this place link.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Type { get { return _type; } }
     }
 }
index c46bbdb..6c9cc63 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="MapService"/> APIs
+    /// List of <see cref="Place"/> objects to be used in <see cref="MapService"/> APIs.
     /// </summary>
     internal class PlaceList : IDisposable
     {
@@ -33,7 +33,7 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets an iterator for addresses in this list.
+        /// Gets an iterator for the addresses in this list.
         /// </summary>
         public IEnumerable<Place> Places
         {
@@ -61,9 +61,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 370de73..d1111f5 100755 (executable)
@@ -19,9 +19,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Media information, used in Place Discovery and Search requests
+    /// Place media information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceMedia
     {
         private string _attribution;
@@ -36,21 +36,21 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets a string which representing attribution for this place media.
+        /// Gets a string representing the attribution for this place media.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Attribution { get { return _attribution; } }
 
         /// <summary>
-        /// Gets an instance of <see cref="PlaceLink"/> object which representing supplier for this place media.
+        /// Gets an instance of <see cref="PlaceLink"/> object representing the supplier for this place media.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceLink Supplier { get { return _supplier; } }
 
         /// <summary>
-        /// Gets an instance of <see cref="PlaceLink"/> object which representing via data for this place media.
+        /// Gets an instance of <see cref="PlaceLink"/> object representing via data for this place media.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceLink Via { get { return _via; } }
     }
 }
index a829fc4..0b37e23 100755 (executable)
@@ -19,9 +19,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Rating information, used in Place Discovery and Search requests
+    /// Place rating information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceRating
     {
         private int _count;
@@ -36,19 +36,19 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets the number of users rated for this place rating.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int UserCount { get { return _count; } }
 
         /// <summary>
-        /// Gets average value of this place rating.
+        /// Gets the average value of this place rating.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Average { get { return _average; } }
 
         /// <summary>
         /// Returns a string that represents this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>Returns a string which presents this object.</returns>
         public override string ToString()
         {
index 210b307..7431fe5 100755 (executable)
@@ -19,9 +19,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Review information, used in Place Discovery and Search requests
+    /// Place review information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceReview
     {
         private DateTime _date;
@@ -49,45 +49,45 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets an instance of <see cref="DateTime"/> object which representing time of this review.
+        /// Gets an instance of <see cref="DateTime"/> object representing the time of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public DateTime Date { get { return _date; } }
 
         /// <summary>
-        /// Gets a string which representing title of this review.
+        /// Gets a string representing the title of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Title { get { return _title; } }
 
         /// <summary>
-        /// Gets a value which representing rating of this review.
+        /// Gets a value representing the rating of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Rating { get { return _rating; } }
 
         /// <summary>
-        /// Gets a string which representing description of this review.
+        /// Gets a string representing the description of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Description { get { return _description; } }
 
         /// <summary>
-        /// Gets a string which representing language of this review.
+        /// Gets a string representing the language of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Language { get { return _language; } }
 
         /// <summary>
-        /// Gets an instance of <see cref="PlaceMedia"/> object which representing review media of this review.
+        /// Gets an instance of <see cref="PlaceMedia"/> object representing the review media of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceMedia ReviewMedia { get { return _media; } }
 
         /// <summary>
-        /// Gets an instance of <see cref="PlaceLink"/> object which representing user link of this review.
+        /// Gets an instance of <see cref="PlaceLink"/> object representing the user link of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceLink UserLink { get { return _userLink; } }
     }
 }
index 92bd555..c4550b6 100755 (executable)
@@ -20,9 +20,9 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place search request for Tizen map service
+    /// Place search request for Tizen map service.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceSearchRequest : MapServiceRequest<Place>
     {
         private Interop.SearchPlaceCallback _placeCallback;
index 1503b63..d0d97b5 100755 (executable)
@@ -23,9 +23,9 @@ using Color = ElmSharp.Color;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Polygon map object
+    /// The polygon map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Polygon : MapObject, IDisposable
     {
         internal Interop.PolygonHandle handle;
@@ -34,9 +34,9 @@ namespace Tizen.Maps
         /// <summary>
         /// Creates a polygon visual object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">List of geographical coordinates</param>
-        /// <param name="color">Background color</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">List of geographical coordinates.</param>
+        /// <param name="color">Background color.</param>
         /// <exception cref="ArgumentException">Thrown when input values are invalid.</exception>
         public Polygon(IEnumerable<Geocoordinates> coordinates, Color color) : base()
         {
@@ -51,15 +51,15 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes clicked event handlers.
+        /// Adds or removes the clicked event handlers.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler Clicked;
 
         /// <summary>
         /// Gets or sets visibility for the polygon.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public override bool IsVisible
         {
             get { return handle.IsVisible; }
@@ -67,9 +67,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets a list of geographical coordinates of polygon vertices.
+        /// Gets or sets a list of geographical coordinates for polygon vertices.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<Geocoordinates> Coordinates
         {
             get
@@ -94,9 +94,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets background color to fill the polygon.
+        /// Gets or sets background color to fill the polygon.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Color FillColor
         {
             get
@@ -141,9 +141,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 9c743c2..7542480 100755 (executable)
@@ -23,9 +23,9 @@ using Color = ElmSharp.Color;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Polyline map object
+    /// The polyline map object.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Polyline : MapObject, IDisposable
     {
         internal Interop.PolylineHandle handle;
@@ -34,11 +34,11 @@ namespace Tizen.Maps
         /// <summary>
         /// Creates polyline visual object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <param name="coordinates">List of geographical coordinates</param>
-        /// <param name="color">Line color</param>
-        /// <param name="width">The width of line [1 ~ 100] (pixels)</param>
-        /// <exception cref="ArgumentException">Thrown when input values are invalid</exception>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="coordinates">List of geographical coordinates.</param>
+        /// <param name="color">Line color.</param>
+        /// <param name="width">The width of line [1 ~ 100] (pixels).</param>
+        /// <exception cref="ArgumentException">Thrown when input values are invalid.</exception>
         public Polyline(List<Geocoordinates> coordinates, Color color, int width) : base()
         {
             var err = Interop.ErrorCode.InvalidParameter;
@@ -52,15 +52,15 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Adds or removes clicked event handlers.
+        /// Adds or removes the clicked event handlers.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandler Clicked;
 
         /// <summary>
-        /// Gets or sets visibility for the polyline.
+        /// Gets or sets the visibility for polyline.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public override bool IsVisible
         {
             get { return handle.IsVisible; }
@@ -70,7 +70,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets a list of geographical coordinates for polyline vertices.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<Geocoordinates> Coordinates
         {
             get
@@ -95,9 +95,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets line color.
+        /// Gets or sets the line color.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Color LineColor
         {
             get
@@ -111,9 +111,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets line width from 1 to 100 pixels.
+        /// Gets or sets the line width from 1 to 100 pixels.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int Width
         {
             get
@@ -158,9 +158,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index af2533d..985372b 100755 (executable)
@@ -20,9 +20,9 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Reverse geocode request for map service.
+    /// Reverses the geocode request for a map service.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class ReverseGeocodeRequest : MapServiceRequest<PlaceAddress>
     {
         private Interop.ReverseGeocodeCallback _geocodeCallback;
index bc5aa4c..618872b 100755 (executable)
@@ -23,7 +23,7 @@ namespace Tizen.Maps
     /// <summary>
     /// Route information, used in Route Search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Route : IDisposable
     {
         internal Interop.RouteHandle handle;
@@ -34,9 +34,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets an instance of <see cref="Geocoordinates"/> object which representing destination coordinates for this route.
+        /// Gets an instance of <see cref="Geocoordinates"/> object representing destination coordinates for this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Destination
         {
             get
@@ -46,9 +46,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets total distance for this route.
+        /// Gets the total distance for this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Distance
         {
             get
@@ -58,9 +58,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Get total duration to cover this route.
+        /// Get the total duration to cover this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Duration
         {
             get
@@ -72,7 +72,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets an ID for this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Id
         {
             get
@@ -82,9 +82,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets transport mode for this route.
+        /// Gets the transport mode for this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public TransportMode Mode
         {
             get
@@ -94,9 +94,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets origin coordinates for this route.
+        /// Gets the origin coordinates for this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Origin
         {
             get
@@ -108,7 +108,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a coordinates list for this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<Geocoordinates> Path
         {
             get
@@ -122,7 +122,7 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets a segment list for this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<RouteSegment> Segments
         {
             get
@@ -134,9 +134,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets distance unit for this route.
+        /// Gets the distance unit for this route.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public DistanceUnit Unit
         {
             get
@@ -169,9 +169,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 4f44d36..063f28e 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Route features, used for route search requests
+    /// Route features used for route search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum RouteFeature
     {
         /// <summary>
-        /// Indicates no route features (are selected).
+        /// Indicates no route features are selected.
         /// </summary>
         None = Interop.RouteRequestFeature.None,
         /// <summary>
@@ -31,7 +31,7 @@ namespace Tizen.Maps
         /// </summary>
         Toll = Interop.RouteRequestFeature.Toll,
         /// <summary>
-        /// Indicates motorway.
+        /// Indicates motorway.
         /// </summary>
         Motorway = Interop.RouteRequestFeature.MotorWay,
         /// <summary>
@@ -39,23 +39,23 @@ namespace Tizen.Maps
         /// </summary>
         BoatFerry = Interop.RouteRequestFeature.BoatFerry,
         /// <summary>
-        /// Indicates rail (train) ferry.
+        /// Indicates rail (train) ferry.
         /// </summary>
         RailFerry = Interop.RouteRequestFeature.RailFerry,
         /// <summary>
-        /// Indicates public transport.
+        /// Indicates public transport.
         /// </summary>
         PublicTransit = Interop.RouteRequestFeature.PublicTransit,
         /// <summary>
-        /// Indicates tunnel.
+        /// Indicates tunnel.
         /// </summary>
         Tunnel = Interop.RouteRequestFeature.Tunnel,
         /// <summary>
-        /// Indicates dirt road.
+        /// Indicates dirt road.
         /// </summary>
         DirtRoad = Interop.RouteRequestFeature.DirtRoad,
         /// <summary>
-        /// Indicates park.
+        /// Indicates park.
         /// </summary>
         Parks = Interop.RouteRequestFeature.Parks,
         /// <summary>
index 03a557e..513d4f7 100755 (executable)
@@ -17,9 +17,9 @@
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Route feature weights used in route search requests
+    /// Route feature weights used in route search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum RouteFeatureWeight
     {
         /// <summary>
index ea1ceeb..d6befd8 100755 (executable)
@@ -19,9 +19,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Route Maneuver information, used in Route Search requests
+    /// Route maneuver information used in route search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class RouteManeuver
     {
         private Interop.RouteDirection _direction;
@@ -46,51 +46,51 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets direction type for this maneuver.
+        /// Gets the direction type for this maneuver.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public DirectionType Direction { get { return (DirectionType)_direction; } }
 
         /// <summary>
-        /// Gets turn type for this maneuver.
+        /// Gets the turn type for this maneuver.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public TurnInstruction Turn { get { return (TurnInstruction)_turntype; } }
 
         /// <summary>
         /// Gets a geographical coordinates position for this maneuver.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Position { get { return _coordinates; } }
 
         /// <summary>
         /// Gets a name of the road for this maneuver.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Road { get { return _road; } }
 
         /// <summary>
         /// Gets an instruction text for this maneuver.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Instruction { get { return _instruction; } }
 
         /// <summary>
         /// Gets a locale for this maneuver.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Locale { get { return _locale; } }
 
         /// <summary>
-        /// Gets time to next instruction for this maneuver.
+        /// Gets the  time to next instruction for this maneuver.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public int TimeToNextInstruction { get { return _timeToNextInstruction; } }
 
         /// <summary>
-        /// Gets distance to next instruction for this maneuver.
+        /// Gets the distance to next instruction for this maneuver.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double DistanceToNextInstruction { get { return _distanceToNextInstruction; } }
     }
 }
index e7932a0..87d77d9 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Allowed route optimization option used in route search requests
+    /// Allowed route optimization option used in route search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     /// <remarks>
-    /// Depending on loaded maps plug-in using <see cref="MapService"/>, some features may have no effect or differences with descriptions.
+    /// Depending on the loaded maps plug-in using <see cref="MapService"/>, some features might have no effect or differences with the descriptions.
     /// </remarks>
     public enum RouteOptimization
     {
         /// <summary>
-        /// Indicates that searching for fastest routes.
+        /// Indicates searching for the fastest routes.
         /// </summary>
         Fastest = Interop.RouteOptimization.Fastest,
         /// <summary>
-        /// Indicates that searching for shortest routes (car mode only).
+        /// Indicates searching for the shortest routes (car mode only).
         /// </summary>
         Shortest = Interop.RouteOptimization.Shortest,
         /// <summary>
-        /// Indicates that searching for most economic routes (car mode only).
+        /// Indicates searching for the most economic routes (car mode only).
         /// </summary>
         Economic = Interop.RouteOptimization.Economic,
         /// <summary>
-        /// Indicates that searching for most scenic routes.
+        /// Indicates searching for the most scenic routes.
         /// </summary>
         Scenic = Interop.RouteOptimization.Scenic,
         /// <summary>
-        /// Indicates that searching for most fastest routes now, based on current traffic condition.
+        /// Indicates searching for most the fastest routes now, based on the current traffic condition.
         /// </summary>
         FastestNow = Interop.RouteOptimization.FastestNow,
         /// <summary>
-        /// Indicates that searching for direct drive routes.
+        /// Indicates searching for the direct drive routes.
         /// </summary>
         DirectDrive = Interop.RouteOptimization.DirectDrive,
     }
index 95d48cf..3f41879 100755 (executable)
@@ -21,9 +21,9 @@ using System.Linq;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Route search request for Tizen map service requests
+    /// Routes the search request for Tizen map service requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class RouteSearchRequest : MapServiceRequest<Route>
     {
         private Interop.SearchRouteCallback _routeCallback;
@@ -93,9 +93,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets a list of way-points to cover between origin and destination.
+        /// Gets or sets a list of way-points to cover between the origin and destination.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<Geocoordinates> Waypoints
         {
             get
index 347466f..f2257a1 100755 (executable)
@@ -21,9 +21,9 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Segment information, used in Route Search requests
+    /// Place Segment information used in Route Search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class RouteSegment
     {
         private Geocoordinates _origin;
@@ -48,39 +48,39 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets an origin coordinates for this segment.
+        /// Gets the origin coordinates for this segment.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Origin { get { return _origin; } }
 
         /// <summary>
-        /// Gets a destination coordinates for this segment.
+        /// Gets the destination coordinates for this segment.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Geocoordinates Destination { get { return _destination; } }
 
         /// <summary>
-        /// Gets total distance for this segment.
+        /// Gets the total distance for this segment.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Distance { get { return _distance; } }
 
         /// <summary>
-        /// Gets total duration to cover this segment.
+        /// Gets the total duration to cover this segment.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Duration { get { return _duration; } }
 
         /// <summary>
-        /// Gets a maneuver list for this segment.
+        /// Gets the maneuver list for this segment.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<RouteManeuver> Maneuvers { get { return _maneuvers; } }
 
         /// <summary>
-        /// Gets a coordinates list for this segment.
+        /// Gets the coordinates list for this segment.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IEnumerable<Geocoordinates> Path { get { return _path; } }
 
         private Area BoundingBox { get { return _boundingBox; } }
index fc7da53..3ab84d4 100755 (executable)
@@ -20,25 +20,25 @@ using System.Collections.Generic;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Preferences for route search requests
+    /// Preferences for route search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class SearchPreference : IGeocodePreference, IPlaceSearchPreference, IRouteSearchPreference, IDisposable
     {
         internal Interop.PreferenceHandle handle;
         private IDictionary<string, string> _properties = new Dictionary<string, string>();
 
         /// <summary>
-        /// Constructors a new search preference.
+        /// Constructor for a new search preference.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public SearchPreference()
         {
             handle = new Interop.PreferenceHandle();
         }
 
         /// <summary>
-        /// Constructors a new search preference.
+        /// Constructor for a new search preference.
         /// </summary>
         internal SearchPreference(Interop.PreferenceHandle nativeHandle)
         {
@@ -46,9 +46,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets preferred language.
+        /// Gets or sets preferred language.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         /// <remarks>Language should be specified as an ISO 3166 alpha-2 two letter country-code
         /// followed by ISO 639-1 for the two-letter language code.<br/>e.g. "ko-KR", "en-US".</remarks>
         public string Language
@@ -67,8 +67,8 @@ namespace Tizen.Maps
         /// <summary>
         /// Gets or sets the maximum result count for each service request.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
-        /// <remarks>Setting negative value will not have any effect on MaxResults value</remarks>
+        /// <since_tizen> 3 </since_tizen>
+        /// <remarks>Setting negative value will not have any effect on MaxResults value.</remarks>
         public int MaxResults
         {
             get
@@ -83,9 +83,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets distance unit.
+        /// Gets or sets the distance unit.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public DistanceUnit Unit
         {
             get
@@ -100,9 +100,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets preferred country.
+        /// Gets or sets the preferred country.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string CountryCode
         {
             get
@@ -117,9 +117,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets search properties as key value pair.
+        /// Gets or sets the search properties as a key value pair.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public IReadOnlyDictionary<string, string> Properties
         {
             get
@@ -144,9 +144,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets route optimization.
+        /// Gets or sets the route optimization.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public RouteOptimization Optimization
         {
             get
@@ -161,9 +161,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets route transport mode.
+        /// Gets or sets the route transport mode.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public TransportMode Mode
         {
             get
@@ -178,9 +178,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets route feature weight.
+        /// Gets or sets the route feature weight.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public RouteFeatureWeight RouteFeatureWeight
         {
             get
@@ -195,9 +195,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets route feature.
+        /// Gets or sets the route feature.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public RouteFeature RouteFeature
         {
             get
@@ -212,9 +212,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets or sets if searching for alternative routes is enabled.
+        /// Gets or sets if the searching for alternative routes is enabled.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public bool SearchAlternativeRoutes
         {
             get
@@ -241,9 +241,9 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Releases all resources used by this object.
+        /// Releases all the resources used by this object.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public void Dispose()
         {
             Dispose(true);
index 511a562..7772c84 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Features available in the Map Service
+    /// Features available in the map service.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum ServiceData
     {
         /// <summary>
-        /// Indicates availability of address value in the Place data.
+        /// Indicates availability of address value in the place data.
         /// </summary>
         PlaceAddress = Interop.ServiceData.PlaceAddress,
         /// <summary>
-        /// Indicates availability of rating value in the Place data.
+        /// Indicates availability of rating value in the place data.
         /// </summary>
         PlaceRating = Interop.ServiceData.PlaceRating,
         /// <summary>
-        /// Indicates availability of place category list in the Place data.
+        /// Indicates availability of place category list in the place data.
         /// </summary>
         PlaceCategories = Interop.ServiceData.PlaceCategories,
         /// <summary>
-        /// Indicates availability of place attribute list in the Place data.
+        /// Indicates availability of place attribute list in the place data.
         /// </summary>
         PlaceAttributes = Interop.ServiceData.PlaceAttributes,
         /// <summary>
-        /// Indicates availability of place contact list in the Place data.
+        /// Indicates availability of place contact list in the place data.
         /// </summary>
         PlaceContacts = Interop.ServiceData.PlaceContacts,
         /// <summary>
-        /// Indicates availability of place editorial list in the Place data.
+        /// Indicates availability of place editorial list in the place data.
         /// </summary>
         PlaceEditorials = Interop.ServiceData.PlaceEditorials,
         /// <summary>
-        /// Indicates availability of place review list in the Place data.
+        /// Indicates availability of place review list in the place data.
         /// </summary>
         PlaceReviews = Interop.ServiceData.PlaceReviews,
         /// <summary>
-        /// Indicates availability of place image in Place the data.
+        /// Indicates availability of place image in the place data.
         /// </summary>
         PlaceImage = Interop.ServiceData.PlaceImage,
         /// <summary>
-        /// Indicates availability of place supplier link value in the Place data.
+        /// Indicates availability of place supplier link value in the place data.
         /// </summary>
         PlaceSupplier = Interop.ServiceData.PlaceSupplier,
         /// <summary>
-        /// Indicates availability of related place link in the Place data.
+        /// Indicates availability of a related place link in the place data.
         /// </summary>
         PlaceRelated = Interop.ServiceData.PlaceRelated,
 
         /// <summary>
-        /// Indicates that the Route Data Structure is defined as a Path (a list of geographical coordinates).
+        /// Indicates that the route data structure is defined as a path (a list of geographical coordinates).
         /// </summary>
         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.
+        /// Indicates that the route data structure is defined as a list of segments while each segment is defined as a path.
         /// </summary>
         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.
+        /// Indicates that the route data structure is defined as a list of segments while each segment is defined as a list of maneuvers.
         /// </summary>
         RouteSegmentsManeuvers = Interop.ServiceData.RouteSegmentsManeuvers,
 
         /// <summary>
-        /// Indicates availability of traffic information on the Map.
+        /// Indicates availability of traffic information on the map.
         /// </summary>
         ViewTraffic = Interop.ServiceData.ViewTraffic,
         /// <summary>
-        /// Indicates availability of public transit information on the Map.
+        /// Indicates availability of public transit information on the map.
         /// </summary>
         ViewPublicTransit = Interop.ServiceData.ViewPublicTransit,
         /// <summary>
-        /// Indicates availability of 3D building drawable on the Map.
+        /// Indicates availability of 3D building drawable on the map.
         /// </summary>
         ViewBuilding = Interop.ServiceData.ViewBuilding,
         /// <summary>
-        /// Indicates availability of scale bar on the Map.
+        /// Indicates availability of scale bar on the map.
         /// </summary>
         ViewScaleBar = Interop.ServiceData.ViewScaleBar,
     }
index 5855b52..7824471 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Service Requests available in the Maps Service
+    /// Service requests available in the maps service.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum ServiceRequestType
     {
         /// <summary>
-        /// Indicates that service request to get position <see cref="Geocoordinates"/> for a given free-formed address string is allowed.
+        /// Indicates the service request to get position <see cref="Geocoordinates"/> for a given free-formed address string is allowed.
         /// </summary>
         Geocode = Interop.ServiceType.Geocode,
         /// <summary>
index 03c7952..dd3fdd0 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Enumeration for snapshot file formats
+    /// Enumeration for the snapshot file formats.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum SnapshotType
     {
         /// <summary>
-        /// Indicates BMP file format.
+        /// Indicates the BMP file format.
         /// </summary>
         BMP = Interop.ViewSnapshotFormatType.ViewSnapshotBmp,
         /// <summary>
-        /// Indicates JPEG file format.
+        /// Indicates the JPEG file format.
         /// </summary>
         JPEG = Interop.ViewSnapshotFormatType.ViewSnapshotJpeg,
     }
index 762e31e..9d94781 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Route types
+    /// Route types.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum TransportMode
     {
         /// <summary>
-        /// Indicates that route is to be traveled by car.
+        /// Indicates that the route is to be traveled by a car.
         /// </summary>
         Car = Interop.RouteTransportMode.Car,
         /// <summary>
-        /// Indicates that route is for a pedestrian.
+        /// Indicates that the route is for a pedestrian.
         /// </summary>
         Pedestrian = Interop.RouteTransportMode.Pedestrian,
         /// <summary>
-        /// Indicates that route is for a cyclist.
+        /// Indicates that the route is for a cyclist.
         /// </summary>
         Bicycle = Interop.RouteTransportMode.Bicycle,
         /// <summary>
-        /// Indicates that route is to be traveled using public transport.
+        /// Indicates that the route is to be traveled using public transport.
         /// </summary>
         PublicTransit = Interop.RouteTransportMode.PublicTransit,
         /// <summary>
-        /// Indicates that route is for a truck.
+        /// Indicates that the route is for a truck.
         /// </summary>
         Truck = Interop.RouteTransportMode.Truck,
     }
index d01de95..b3fe5fa 100755 (executable)
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Turn Instruction type for route maneuver
+    /// Turns the Instruction type for route maneuver.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public enum TurnInstruction
     {
         /// <summary>
-        /// Indicates unknown instruction.
+        /// Indicates an unknown instruction.
         /// </summary>
         None = Interop.RouteTurnType.None,
         /// <summary>
@@ -47,11 +47,11 @@ namespace Tizen.Maps
         /// </summary>
         HardRight = Interop.RouteTurnType.HardRight,
         /// <summary>
-        /// Indicates instruction to u-turn to the right.
+        /// Indicates instruction to U-turn to the right.
         /// </summary>
         UturnRight = Interop.RouteTurnType.UturnRight,
         /// <summary>
-        /// Indicates instruction to u-turn to the left.
+        /// Indicates instruction to U-turn to the left.
         /// </summary>
         UturnLeft = Interop.RouteTurnType.UturnLeft,
         /// <summary>