{
using (var clonedHandle = CoordinatesHandle.CloneFrom(handleToAdd))
{
- if (this.Append(clonedHandle).WarnIfFailed("Failed to add coordinate to the list"))
+ if (this.Append(clonedHandle).WarnIfFailed("Failed to add coordinates to the list"))
{
clonedHandle.HasOwnership = false;
}
internal CoordinatesHandle ScreenToGeolocation(Point position)
{
IntPtr coordinates;
- this.ScreenToGeolocation(position.X, position.Y, out coordinates).WarnIfFailed("Failed to convert screen position to geo-coordinates");
+ this.ScreenToGeolocation(position.X, position.Y, out coordinates).WarnIfFailed("Failed to convert screen position to geocoordinates");
return CoordinatesHandle.Create(coordinates);
}
internal Point GeolocationToScreen(CoordinatesHandle coordinates)
{
int x, y;
- this.GeolocationToScreen(coordinates, out x, out y).WarnIfFailed("Failed to convert geo-coordinate to screen position");
+ this.GeolocationToScreen(coordinates, out x, out y).WarnIfFailed("Failed to convert geocoordinates to screen position");
return new Point() { X = x, Y = y };
}
}
/// <summary>
/// Constructs rectangular area.
/// </summary>
- /// <param name="topLeft">Top left coordinate of the area</param>
- /// <param name="bottomRight">Bottom left coordinate of the area</param>
+ /// <param name="topLeft">Top-left coordinates of the area</param>
+ /// <param name="bottomRight">Bottom-left coordinate 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>
/// <summary>
/// Constructs circular area.
/// </summary>
- /// <param name="center">Coordinate for center of the area</param>
+ /// <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>
startExecutionAction = new Action(() =>
{
int requestID;
- errMessage = $"Failed to get co-ordinates for given address {address}";
+ errMessage = $"Failed to get coordinates for given address {address}";
errorCode = _service.handle.Geocode(address, _service.Preferences.handle, _geocodeCallback, IntPtr.Zero, out requestID);
if (errorCode.IsFailed() && errorCode != Interop.ErrorCode.Canceled)
{
startExecutionAction = new Action(() =>
{
int requestID;
- errMessage = $"Failed to get co-ordinates for given address {address}";
+ errMessage = $"Failed to get coordinates for given address {address}";
errorCode = _service.handle.GeocodeInsideArea(address, boundry.handle, _service.Preferences.handle, _geocodeCallback, IntPtr.Zero, out requestID);
if (errorCode.IsFailed() && errorCode != Interop.ErrorCode.Canceled)
{
startExecutionAction = new Action(() =>
{
int requestID;
- errMessage = $"Failed to get co-ordinates for given address {address}";
+ errMessage = $"Failed to get coordinates for given address {address}";
errorCode = _service.handle.GeocodeByStructuredAddress(address.handle, _service.Preferences.handle, _geocodeCallback, IntPtr.Zero, out requestID);
if (errorCode.IsFailed() && errorCode != Interop.ErrorCode.Canceled)
{
internal Interop.CoordinatesHandle handle;
/// <summary>
- /// Constructs map coordinate object.
+ /// Constructs map coordinates object.
/// </summary>
/// <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>
/// <summary>
/// Gets and sets a string representing keys for map service provider
/// </summary>
- /// <remark>Regaularly, 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.</remark>
+ /// <remarks>Regaularly, 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>
public string ProviderKey
{
get
/// </summary>
/// <param name="coordinates">Marker coordinates</param>
/// <param name="imagePath">Image file path for Marker</param>
- /// <remark>
+ /// <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.
- /// </remark>
+ /// </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>
/// </summary>
/// <param name="coordinates">Marker coordinates</param>
/// <param name="imagePath">Image file path for Marker</param>
- /// <remark>
+ /// <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.
- /// </remark>
+ /// </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>
You can refine your search request by supplying keywords, Name of Points
of Interests, or Proximity.<br/>
- Category Search: search for popular places for the given location context and matching the category filter criteria.
- You can refine your search request by specifying the categories of place you are searching for.<p/>
+ You can refine your search request by specifying the categories of place you are searching for.<br/>
Result item type of searching<br/>
-- ID, name, location, distance, URI, rating, category.<p/>
+ - ID, name, location, distance, URI, rating, category.<br/>
Place information allows to fetch details about a place. The following place content is supported:<br/>
- Base Attribute includes name, location, categories, contacts, ID, ratings, icon path,
image content, review content, and editorial content.<br/>
startExecutionAction = new Action(() =>
{
int requestID;
- errMessage = $"Failed to get co-ordinates for address {address} in given boundary";
+ errMessage = $"Failed to get coordinates for address {address} in given boundary";
errorCode = _service.handle.SearchPlaceByAddress(address, boundary.handle, _service.PlaceSearchFilter.handle, _service.Preferences.handle, _placeCallback, IntPtr.Zero, out requestID);
if (errorCode.IsFailed() && errorCode != Interop.ErrorCode.Canceled)
{
startExecutionAction = new Action(() =>
{
int requestID;
- errMessage = $"Failed to get co-ordinates for given Coordinate: {latitude}:{longitute}";
+ errMessage = $"Failed to get coordinates for given coordinates: {latitude}:{longitute}";
errorCode = _service.handle.ReverseGeocode(latitude, longitute, _service.Preferences.handle, _geocodeCallback, IntPtr.Zero, out requestID);
if (errorCode.IsFailed() && errorCode != Interop.ErrorCode.Canceled)
{
/// <summary>
/// Allowed route optimization option used in route search requests
/// </summary>
- /// <remark>
+ /// <remarks>
/// Depending on loaded maps plug-in using <paramref name="MapService"/>, some features may have no effect or differences with descriptions.
- /// </remark>
+ /// </remarks>
public enum RouteOptimization
{
/// <summary>