Add airport overview page and links to it #225
This commit is contained in:
10
config/checkwx.php
Normal file
10
config/checkwx.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* For METAR and TAF features, register for an API key at
|
||||
* https://www.checkwx.com
|
||||
*/
|
||||
|
||||
return [
|
||||
'url' => 'https://api.checkwx.com',
|
||||
'api_key' => false,
|
||||
];
|
||||
16
config/map.php
Normal file
16
config/map.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* Configuration for mapping URLs and stuff
|
||||
*/
|
||||
|
||||
return [
|
||||
/**
|
||||
* This can really be any METAR service, as long as it returns GeoJSON
|
||||
*/
|
||||
'metar_wms' => [
|
||||
'url' => 'https://ogcie.iblsoft.com/observations?',
|
||||
'params' => [
|
||||
'layers' => 'metar'
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -34,12 +34,6 @@ return [
|
||||
*/
|
||||
'vacentral_api_url' => 'https://api.vacentral.net',
|
||||
|
||||
/**
|
||||
* For METAR features, register for an API key at
|
||||
* https://www.checkwx.com
|
||||
*/
|
||||
'checkwx_api_key' => env('CHECKWX_API_KEY', false),
|
||||
|
||||
/**
|
||||
* Misc Settings
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user