Add AirspaceMap widget; airport overview page
This commit is contained in:
29
app/Widgets/AirspaceMap.php
Normal file
29
app/Widgets/AirspaceMap.php
Normal 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,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user