-
Notifications
You must be signed in to change notification settings - Fork 6
/
EGmap3RectangleOptions.php
65 lines (64 loc) · 1.23 KB
/
EGmap3RectangleOptions.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
53
54
55
56
57
58
59
60
61
62
63
64
65
<?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
*
*/
/**
* Circle options.
* @link http://code.google.com/intl/fr/apis/maps/documentation/javascript/reference.html#CircleOptions
*/
class EGmap3RectangleOptions extends EGmap3OptionBase
{
/**
* The bounds.
* @var array
*/
public $bounds;
/**
* Indicates whether this Rectangle handles click events. Defaults to true.
* @var boolean
*/
public $clickable;
/**
* The fill color in HTML hex style, ie. "#00AAFF"
* @var string
*/
public $fillColor;
/**
* The fill opacity between 0.0 and 1.0
* @var float
*/
public $fillOpacity;
/**
* The radius in meters on the Earth's surface.
* @var integer
*/
public $radius;
/**
* The stroke color in HTML hex style, ie. "#FFAA00"
* @var string
*/
public $strokeColor;
/**
* The stroke opacity between 0.0 and 1.0
* @var float
*/
public $strokeOpacity;
/**
* The stroke width in pixels.
* @var integer
*/
public $strokeWeight;
/**
* The zIndex compared to other polys.
* @var integer
*/
public $zIndex;
}