\Kendo\Dataviz\UI\MapLayerDefaultsTile

A PHP class representing the tile setting of MapLayerDefaults.

Methods

attribution

The attribution of all tile layers.

Returns

\Kendo\Dataviz\UI\MapLayerDefaultsTile

Parameters

$value string

Example

<?php
$tile = new \Kendo\Dataviz\UI\MapLayerDefaultsTile();
$tile->attribution('value');
?>

opacity

The the opacity of all tile layers.

Returns

\Kendo\Dataviz\UI\MapLayerDefaultsTile

Parameters

$value float

Example

<?php
$tile = new \Kendo\Dataviz\UI\MapLayerDefaultsTile();
$tile->opacity(1);
?>

subdomains

The subdomain of all tile layers.

Returns

\Kendo\Dataviz\UI\MapLayerDefaultsTile

Parameters

$value array

Example

<?php
$tile = new \Kendo\Dataviz\UI\MapLayerDefaultsTile();
$tile->subdomains(array());
?>

urlTemplate

The URL template for tile layers. Template variables: x - X coordinate of the tile; y - Y coordinate of the tile; zoom - zoom level or subdomain - Subdomain for this tile. See subdomains.

Returns

\Kendo\Dataviz\UI\MapLayerDefaultsTile

Parameters

$value string

Example

<?php
$tile = new \Kendo\Dataviz\UI\MapLayerDefaultsTile();
$tile->urlTemplate('value');
?>
In this article
Not finding the help you need?