Merge pull request #1 from towercreative/towercreative-patch-1

Update MarkerExtension.php
This commit is contained in:
Nathan Bullivant 2023-09-02 17:13:43 +08:00 committed by GitHub
commit a832e14dab
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()