3 final class FuelMapView
4 extends FuelComponentView
{
6 private $items = array();
8 public function newItem() {
9 $item = new FuelMapItemView();
10 $this->items
[] = $item;
14 public function render() {
15 require_celerity_resource('fuel-map-css');
17 $items = $this->items
;
26 'class' => 'fuel-map-items',
33 'class' => 'fuel-map',
37 return $this->newComponentTag(
40 'class' => 'fuel-map-component',