Update MarkerExtension.php

Add conditional logic to only display the mapbox if the override option isn't ticked.
This commit is contained in:
Nathan Bullivant 2023-09-02 17:12:14 +08:00 committed by GitHub
parent 18e242c17a
commit af98273bf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -36,8 +36,19 @@ class MarkerExtension extends Geocodable
$fields->addFieldsToTab('Root.Map', [
CheckboxField::create('LatLngOverride', 'Override Latitude and Longitude?')
->setDescription('Check this box and save to be able to set the latitude and longitude manually.'),
MapboxField::create('Map', 'Choose a location', 'Lat', 'Lng'),
]);
#Show map, or coordinates if override is ticked.
if ($record->LatLngOverride) {
$fields->addFieldsToTab('Root.Map', [
TextField::create('Lat', 'Latitude'),
TextField::create('Lng', 'Longitude'),
]);
}
else {
$fields->addFieldsToTab('Root.Map', [
MapboxField::create('Map', 'Choose a location', 'Lat', 'Lng'),
]);
}
}
public function getDirectionsURL()