-
Notifications
You must be signed in to change notification settings - Fork 6
/
EGmap3Primitives.php
55 lines (51 loc) · 986 Bytes
/
EGmap3Primitives.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
<?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 point on a two-dimensional plane.
*/
class EGmap3Point extends EGmap3OptionBase
{
/**
* @var integer The X coordinate
*/
public $x;
/**
* @var integer The Y coordinate
*/
public $y;
public function __construct($x=0, $y=0)
{
$this->x = $x;
$this->y = $y;
}
}
/**
* Two-dimensonal size, where width is the distance on the x-axis, and height
* is the distance on the y-axis.
*/
class EGmap3Size extends EGmap3OptionBase
{
/**
* @var integer The height along the y-axis, in pixels.
*/
public $height;
/**
* @var integer The width along the x-axis, in pixels.
*/
public $width;
public function __construct($width=0, $height=0)
{
$this->width = $width;
$this->height = $height;
}
}