Class Polyline
Definition
- Namespace:
- Tizen.Maps
- Assembly:
- Tizen.Maps.dll
- API Level:
- 3
The polyline map object.
public class Polyline : MapObject, IDisposable
- Inheritance
- Implements
Constructors
View SourcePolyline(List<Geocoordinates>, Color, Int32)
Creates polyline visual object.
Declaration
public Polyline(List<Geocoordinates> coordinates, Color color, int width)
Parameters
Type | Name | Description |
---|---|---|
List<Geocoordinates> | coordinates | List of geographical coordinates. |
Color | color | Line color. |
Int32 | width | The width of line [1 ~ 100] (pixels). |
Exceptions
Type | Condition |
---|---|
ArgumentException | Thrown when input values are invalid. |
API Level: 3
Properties
View SourceCoordinates
Gets or sets a list of geographical coordinates for polyline vertices.
Declaration
public IEnumerable<Geocoordinates> Coordinates { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<Geocoordinates> |
API Level: 3
View SourceIsVisible
Gets or sets the visibility for polyline.
Declaration
public override bool IsVisible { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Overrides
API Level: 3
View SourceLineColor
Gets or sets the line color.
Declaration
public Color LineColor { get; set; }
Property Value
Type | Description |
---|---|
Color |
API Level: 3
View SourceWidth
Gets or sets the line width from 1 to 100 pixels.
Declaration
public int Width { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 3
Methods
View SourceDispose()
Releases all the resources used by this object.
Declaration
public void Dispose()
API Level: 3
View SourceDispose(Boolean)
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
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. |
API Level: 3
View SourceFinalize()
Destroy the Polyline object.
Declaration
protected void Finalize()
Events
View SourceClicked
Adds or removes the clicked event handlers.
Declaration
public event EventHandler Clicked
Event Type
Type | Description |
---|---|
EventHandler |