-
Notifications
You must be signed in to change notification settings - Fork 6
/
EGmap3PolylineOptions.php
53 lines (52 loc) · 1.14 KB
/
EGmap3PolylineOptions.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
<?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 EGmap3PolylineOptions extends EGmap3OptionBase
{
/**
* Indicates whether this Polyline handles click events. Defaults to true.
* @var boolean
*/
public $clickable;
/**
* Render each edge as a geodesic (a segment of a "great circle").
* A geodesic is the shortest path between two points along the surface of
* the Earth.
* @var boolean
*/
public $geodesic;
/**
* The stroke color. All CSS3 colors are supported except for extended
* named colors.
* @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;
}