Class Pin
Definition
- Namespace:
- Tizen.Maps
- Assembly:
- Tizen.Maps.dll
- API Level:
- 3
Pin type the marker map object.
public class Pin : Marker, IDisposable
- Inheritance
- Implements
Constructors
View SourcePin(Geocoordinates)
Creates a pin type marker.
Declaration
public Pin(Geocoordinates coordinates)
Parameters
Type | Name | Description |
---|---|---|
Geocoordinates | coordinates | Marker coordinates. |
Exceptions
Type | Condition |
---|---|
ArgumentException | Thrown when input coordinates are invalid. |
API Level: 3
View SourcePin(Geocoordinates, String)
Creates a pin type marker.
Declaration
public Pin(Geocoordinates coordinates, string imagePath)
Parameters
Type | Name | Description |
---|---|---|
Geocoordinates | coordinates | Marker coordinates. |
String | imagePath | Image file path for the Marker. |
Remarks
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.
Exceptions
Type | Condition |
---|---|
NotSupportedException | Thrown when the required feature is not supported. |
UnauthorizedAccessException | Thrown when application does not have some privilege to access this method. |
ArgumentException | Thrown when the input coordinates or imagePath is invalid. |