cadetill's blog Copyright © Xavier Martínez (cadetill)

Class TGMKmlLayer

Unit

Declaration

type TGMKmlLayer = class(TGMPersistentStr)

Description

Class for google.maps.KmlLayer class.

More information at google.maps.KmlLayer class

Hierarchy

Overview

Methods

Public constructor Create(AOwner: TPersistent); override;
Public destructor Destroy; override;
Public function PropToString: string; override;
Public procedure Assign(Source: TPersistent); override;

Properties

Public property APIUrl;
Published property KmlLayerOptions: TGMKmlLayerOptions read FKmlLayerOptions write FKmlLayerOptions;
Published property Show: Boolean read FShow write SetShow;

Description

Methods

Public constructor Create(AOwner: TPersistent); override;

Class constructor.

Parameters
AOwner
Owner of the object.
Public destructor Destroy; override;

Destructor class.

Public function PropToString: string; override;

Converts all class properties values to a string separated by comma used to send values to a JavaScript function.

Returns

string with all properties.

Public procedure Assign(Source: TPersistent); override;

Call Assign to copy the properties or other attributes form an object to another.

The standard form of a call to Assign method is
     Destination.Assign(Source);
which tells the Destination object to copy the contents of the Source object to itself.

Parameters
Source
Object to copy the content.

Properties

Public property APIUrl;

URL to Google Maps API page.

Published property KmlLayerOptions: TGMKmlLayerOptions read FKmlLayerOptions write FKmlLayerOptions;

TGMKmlLayerOptions object used to define the properties that can be set on a KmlLayer.

Published property Show: Boolean read FShow write SetShow;

Show or hide the layer.

If set to true, shown the layer, else hidden it.


Generated by PasDoc 0.15.0.