A Filament Field to enable pick location in google map and return geo coordinates. For initial location you can use coordinate or address.
this packages require Google Map API and using this service :
- Maps JavaScript API
- Places API
You can install the package via composer:
composer require erkurn/filament-address-picker
<?php
class FilamentResource extends Resource
{
public static function form(Form $form)
{
return $form->schema([
AddressPicker::make('coordinate')
->setDefaultLocation([ // Set Default Location
'lat' => -6.914744,
'lng' => 107.609810
])
->mapControls([ // Map Controls
'mapTypeControl' => true,
'scaleControl' => true,
'streetViewControl' => false,
'rotateControl' => true,
'fullscreenControl' => true,
'searchBoxControl' => true
])
->minHeight(300) // Min Height In Pixels
->defaultZoom(16) // Default Zoom
->placeholder("Search Address") // Default Search
->afterStateUpdated(function ($state, $component, $set) {
$location = $component->getAddress(); // Get Details Location After Pick Location
$location->getAdminLevels()->get(4)->getName(); // Post Code
$location->getStreetName(); // Street Name
$location->getStreetNumber(); // Street Number
})
->placeholder("Search Address")
]);
}
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.