1 | <?php |
||
17 | class LayerManager |
||
18 | { |
||
19 | /** |
||
20 | * @var KmlLayer[] |
||
21 | */ |
||
22 | private $kmlLayers = []; |
||
23 | |||
24 | /** |
||
25 | * @return bool |
||
26 | */ |
||
27 | public function hasKmlLayers() |
||
31 | |||
32 | /** |
||
33 | * @return KmlLayer[] |
||
34 | */ |
||
35 | public function getKmlLayers() |
||
39 | |||
40 | /** |
||
41 | * @param KmlLayer[] $kmlLayers |
||
42 | */ |
||
43 | public function setKmlLayers(array $kmlLayers) |
||
48 | |||
49 | /** |
||
50 | * @param KmlLayer[] $kmlLayers |
||
51 | */ |
||
52 | public function addKmlLayers(array $kmlLayers) |
||
58 | |||
59 | /** |
||
60 | * @param KmlLayer $kmlLayer |
||
61 | * |
||
62 | * @return bool |
||
63 | */ |
||
64 | public function hasKmlLayer(KmlLayer $kmlLayer) |
||
68 | |||
69 | /** |
||
70 | * @param KmlLayer $kmlLayer |
||
71 | */ |
||
72 | public function addKmlLayer(KmlLayer $kmlLayer) |
||
78 | |||
79 | /** |
||
80 | * @param KmlLayer $kmlLayer |
||
81 | */ |
||
82 | public function removeKmlLayer(KmlLayer $kmlLayer) |
||
86 | } |
||
87 |