Class Overlay

Definition

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

Overlay map object.

C#
Copy
public class Overlay : MapObject, IDisposable
Inheritance
Overlay
Derived
Implements
System.IDisposable

Constructors

View Source

Overlay(Geocoordinates, EvasObject)

Creates a normal overlay map object.

Declaration
C#
Copy
public Overlay(Geocoordinates coordinates, EvasObject objectToContain)
Parameters
Type Name Description
Geocoordinates coordinates
EvasObject objectToContain
Exceptions
Type Condition
System.ArgumentException

Thrown when the input coordinates or objectToContain are invalid.

API Level: 3

Properties

View Source

Coordinates

Gets or sets geographical coordinates for an overlay map object.

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

IsVisible

Gets or sets the visibility of an overlay map object.

Declaration
C#
Copy
public override bool IsVisible { get; set; }
Property Value
Type Description
Boolean
Overrides
API Level: 3
View Source

MaximumZoomLevel

Gets or sets maximum zoom lever for an overlay map object.

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

MinimumZoomLevel

Gets or sets minimum zoom level for an overlay map object.

Declaration
C#
Copy
public int MinimumZoomLevel { get; set; }
Property Value
Type Description
System.Int32
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.

API Level: 3
View Source

Finalize()

Destroy the Overlay object.

Declaration
C#
Copy
protected void Finalize()

Implements

System.IDisposable