-
Notifications
You must be signed in to change notification settings - Fork 6
/
EGmap3MapTypeStyle.php
52 lines (49 loc) · 1.36 KB
/
EGmap3MapTypeStyle.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* EGmap3 Yii extension
*
* Object oriented PHP interface to GMAP3 Javascript library for
* Google Maps.
*
* @copyright © Digitick <www.digitick.net> 2011
* @license GNU Lesser General Public License v3.0
* @author Ianaré Sévi
*
*/
/**
* A collection of selectors and stylers that define how the map should be styled.
* Selectors specify what map elements should be affected and stylers specify
* how those elements should be modified.
*
* @author Ianaré Sévi
*/
class EGmap3MapTypeStyle extends EGmap3OptionBase
{
/**
* @var string Selects the element type to which a styler should be applied.
* An element type distinguishes between the different representations of a
* feature. Optional; if elementType is not specified, the value is assumed
* to be 'all'.
*/
public $elementType;
/**
* @var string Selects the feature, or group of features, to which a styler
* should be applied. Optional; if featureType is not specified,
* the value is assumed to be 'all'.
*/
public $featureType;
/**
*
* @var EGmap3MapTypeStyler The style rules to apply to the selectors.
* The rules are applied to the map's elements in the order they are listed
* in this array.
*/
public $stylers;
public function getOptionChecks()
{
return array(
'elementType' => array('all', 'geometry', 'labels'),
'stylers' => 'array',
);
}
}