| 1 | <?php |
||
| 26 | class Polygon extends PolyLine |
||
| 27 | { |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var bool whether to insert the layer at the bottom most position (z-index) on the map in reference to other |
||
| 31 | * ui layers. |
||
| 32 | */ |
||
| 33 | public $insertAtTheBottom = false; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Returns the javascript ready code for the object to render on the map. |
||
| 37 | * To add a Polygon to the map, you need to use the special method [[LetLeaf::addPolygon]]. |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 12 | public function encode() |
|
| 52 | |||
| 53 | } |
||
| 54 |