Add AirspaceMap widget; airport overview page

This commit is contained in:
Nabeel Shahzad
2018-03-27 11:40:37 -05:00
parent 5cbb480f6e
commit 504b33ba2a
9 changed files with 160 additions and 5 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace App\Widgets;
use App\Interfaces\Widget;
/**
* Show the live map in a view
* @package App\Widgets
*/
class AirspaceMap extends Widget
{
protected $config = [
'height' => '800px',
'width' => '100%',
'lat' => 0,
'lon' => 0,
];
/**
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function run()
{
return view('widgets.airspace_map', [
'config' => $this->config,
]);
}
}