1 | <?php |
||
26 | class Circle extends Layer |
||
27 | { |
||
28 | use LatLngTrait; |
||
29 | use PopupTrait; |
||
30 | |||
31 | /** |
||
32 | * @var float Sets the radius of a circle. Units are in meters. |
||
33 | */ |
||
34 | public $radius; |
||
35 | |||
36 | /** |
||
37 | * Returns the javascript ready code for the object to render |
||
38 | * @return JsExpression |
||
39 | */ |
||
40 | 9 | public function encode() |
|
53 | |||
54 | } |
||
55 |