Class Place

Definition

Namespace:
Tizen.Maps
Assembly:
Tizen.Maps.dll
API Level:
3

Place information, used in place discovery and search requests.

C#
Copy
public class Place : IDisposable
Inheritance
System.Object
Place
Implements
System.IDisposable

Properties

View Source

Address

Gets an address for the place.

Declaration
C#
Copy
public PlaceAddress Address { get; }
Property Value
Type Description
PlaceAddress
API Level: 3
View Source

Attributes

Gets all the attributes attached to this place.

Declaration
C#
Copy
public IEnumerable<PlaceAttribute> Attributes { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<PlaceAttribute>
API Level: 3
View Source

Categories

Gets all the categories attached to this place.

Declaration
C#
Copy
public IEnumerable<PlaceCategory> Categories { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<PlaceCategory>
API Level: 3
View Source

Contacts

Gets all the contacts attached to this place.

Declaration
C#
Copy
public IEnumerable<PlaceContact> Contacts { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<PlaceContact>
API Level: 3
View Source

Coordinates

Gets a geographical location for the place.

Declaration
C#
Copy
public Geocoordinates Coordinates { get; }
Property Value
Type Description
Geocoordinates
API Level: 3
View Source

Distance

Gets a distance for the place from the center.

Declaration
C#
Copy
public int Distance { get; }
Property Value
Type Description
Int32
API Level: 3
View Source

Editorials

Gets all the editorials attached to this place.

Declaration
C#
Copy
public IEnumerable<PlaceEditorial> Editorials { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<PlaceEditorial>
API Level: 3
View Source

Id

Gets an ID string for the place.

Declaration
C#
Copy
public string Id { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

Images

Gets all the images attached to this place.

Declaration
C#
Copy
public IEnumerable<PlaceImage> Images { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<PlaceImage>
API Level: 3
View Source

Name

Gets name string for the place.

Declaration
C#
Copy
public string Name { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

Properties

Gets all the properties attached to this place.

Declaration
C#
Copy
public IDictionary<string, string> Properties { get; }
Property Value
Type Description
IDictionary<System.String, System.String>
API Level: 3
View Source

Rating

Gets a rating for the place.

Declaration
C#
Copy
public PlaceRating Rating { get; }
Property Value
Type Description
PlaceRating
API Level: 3
View Source

Gets a related link for the place.

Declaration
C#
Copy
public PlaceLink Related { get; }
Property Value
Type Description
PlaceLink
API Level: 3
View Source

Reviews

Gets all the reviews attached to this place.

Declaration
C#
Copy
public IEnumerable<PlaceReview> Reviews { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<PlaceReview>
API Level: 3
View Source

Supplier

Gets a supplier link for the place.

Declaration
C#
Copy
public PlaceLink Supplier { get; }
Property Value
Type Description
PlaceLink
API Level: 3
View Source

Uri

Gets a view URI for the place.

Declaration
C#
Copy
public string Uri { get; }
Property Value
Type Description
System.String
API Level: 3

Methods

View Source

Dispose()

Releases all the resources used by this object.

Declaration
C#
Copy
public void Dispose()
API Level: 3
View Source

Dispose(Boolean)

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
Boolean disposing

If true, managed and unmanaged resources can be disposed, otherwise only unmanaged resources can be disposed.

View Source

Finalize()

Destroy the Place object.

Declaration
C#
Copy
protected void Finalize()

Implements

System.IDisposable