phpvms/app/Widgets/AirspaceMap.php

29 lines
494 B
PHP
Raw Normal View History

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