kpebedko22 / filament-yandex-map
This is my package filament-yandex-map
Requires
- php: ^8.3
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- filament/filament: ^3.0
- larastan/larastan: ^2.9
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
README
This package provides a set of tools for using Yandex Map within the Laravel Filament.
Installation
You can install the package via composer:
composer require kpebedko22/filament-yandex-map
Modify services.php
config file. This is the contents of the config file:
return [ // ... 'yandex_map' => [ 'api_key' => env('YANDEX_MAP_API_KEY', ''), 'suggest_api_key' => env('YANDEX_MAP_SUGGEST_API_KEY', ''), 'lang' => 'ru_RU', 'center' => [53.35, 83.75], 'zoom' => 12, ], ];
Optionally, you can publish the translations using:
php artisan vendor:publish --tag="filament-yandex-map-translations"
Usage
->schema([ YandexMap::make('point') // Set mode of geo-object. Always required! ->mode(YandexMapMode::Placemark) // By default, values are taken from config // You are free to override them using plain values or closure ->apiKey('your_yandex_api_key') ->suggestApiKey('your_yandex_suggest_api_key') ->center([53.35, 83.75]) ->zoom(12) ->lang('ru_RU') // By default: 600px ->height('600px') // Setup control buttons ->deleteBtnParameters( new ButtonData(__('filament-yandex-map::control-buttons.delete')), new ButtonOptions( float: ButtonFloat::Right, selectOnClick: false ), ) ->drawBtnParameters() ->editBtnParameters() // Setup geo-object ->geoObjectOptions(new GeoObjectOptions()) ->geoObjectProperties(new GeoObjectProperties()) // It's required to set up `formatStateUsing`, `dehydrateStateUsing` methods // to properly take data from record. The package provides some implementations // for common cases. Find more information further below. ->usingArray('lat', 'lng') ->usingMagellan() ])
Geometries
The package provides work with the following types of geometries (geo-objects):
- Point
- Linestring
- Polygon
Storing geometries in database
Since there are different ways to store geo-object data in database table, the package cannot cover all options. But it provides two out-of-the-box usage options:
- json column
- postgis column
Json column
The package uses array of two coordinates [lat, lng]
for storing point coordinates.
E.g.: [53.35, 83.75]
, where 53.35
is latitude and 83.75
is longitude.
If you're store coordinates of point as json-object, e.g.: {"lat": 53.35, "lng": 83.75}
, then you
should use ->usingArray('lat', 'lng')
method.
Postgis column (PostgreSQL)
For ease of working with postgis columns it's recommended to use Laravel Magellan package.
The package supports work with the following geometries:
Class | Migration |
---|---|
Clickbar\Magellan\Data\Geometries\Point |
$table->magellanPoint('point') |
Clickbar\Magellan\Data\Geometries\LineString |
$table->magellanLineString('line') |
Clickbar\Magellan\Data\Geometries\Polygon |
$table->magellanPolygon('polygon') |
Separate lat/lng columns
If you are storing latitude and longitude of the point in the different columns
of your database table, then you need to write your own implementation
of formatStateUsing
and mutate data before saving.
// On the form use Kpebedko22\FilamentYandexMap\Forms\Components\YandexMap; use Kpebedko22\FilamentYandexMap\ValueObjects\Point; use Kpebedko22\FilamentYandexMap\Enums\YandexMapMode; YandexMap::make('point') ->mode(YandexMapMode::Placemark) ->formatStateUsing(static function (?Model $record) { return $record ? (new Point($record->lat, $record->lng))->toArray() : null; }), // CreatePage protected function mutateFormDataBeforeCreate(array $data): array { $data['lat'] = $data['point']['lat']; $data['lng'] = $data['point']['lng']; unset($data['point']); return parent::mutateFormDataBeforeCreate($data); } // EditPage protected function mutateFormDataBeforeSave(array $data): array { $data['lat'] = $data['point']['lat']; $data['lng'] = $data['point']['lng']; unset($data['point']); return parent::mutateFormDataBeforeSave($data); }
Localization
The list of available locales can be found in YandexMapLang
enum.
Geometries control buttons
List of available control buttons:
- toggle editing mode
- toggle drawing mode
- delete geo-object
Since the form may require using several map components, there is a nuance with
the automatic inclusion of editor.startDrawing()
, editor.startEditing()
.
The last loaded map component will dominate. Therefore, in order to
edit/draw on the map, control buttons are added that include these functions.
There is also a button to delete a geo-object.
Default state of control buttons:
YandexMap::make('point') ->mode(YandexMapMode::Placemark) ->deleteBtnParameters( new ButtonData(__('filament-yandex-map::control-buttons.delete')), new ButtonOptions( float: ButtonFloat::Right, selectOnClick: false ), ); ->drawBtnParameters( new ButtonData(__('filament-yandex-map::control-buttons.draw')), new ButtonOptions(float: ButtonFloat::Right), ); ->editBtnParameters( new ButtonData(__('filament-yandex-map::control-buttons.edit')), new ButtonOptions(float: ButtonFloat::Right), );
You are free to change the visual state of this control buttons.
Geometries properties and options
You can modify geo-object properties and options.
Testing
No tests yet.
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.