agelgil/filament-map-picker
Composer 安装命令:
composer require agelgil/filament-map-picker
包简介
Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.
关键字:
README 文档
README
A custom field for Filament that allows you to effortlessly select a location on a map and retrieve geographical coordinates.
Introduction
Map Picker is a Filament custom field designed to simplify the process of choosing a location on a map and obtaining its geo-coordinates.
-
Features include:
- A Field for Filament-v3 with OpenStreetMap Integration
- Receive Real-time Coordinates Upon Marker Movement Completion
- Tailor Controls and Marker Appearance to Your Preferences
- GeoMan Integration for Advanced Map Editing Capabilities
-
Latest versions of PHP and Filament
-
Best practices applied:
README.md(badges included)LICENSEcomposer.json.gitignorepint.json
GeoMan Integration
This package now includes integration with GeoMan, a powerful tool for creating and editing geometries on maps. GeoMan allows users to draw various shapes, edit existing geometries, and perform advanced map editing tasks.
GeoMan Features:
- Draw markers, polygons, polylines, and circles
- Edit existing geometries
- Cut polygons
- Rotate shapes
- Drag mode for easy shape manipulation
- Delete layers
Supported Maps
Map Picker currently supports the following map:
- Open Street Map (OSM)
Additional map options will be added to the package as needed and tested.
Installation
You can easily install the package via Composer:
composer require dotswan/filament-map-picker
Basic Usage
Resource file:
<?php namespace App\Filament\Resources; use Filament\Resources\Resource; use Filament\Resources\Forms\Form; use Dotswan\MapPicker\Fields\Map; ... class FilamentResource extends Resource { ... public static function form(Form $form) { return $form->schema([ Map::make('location') ->label('Location') ->columnSpanFull() ->defaultLocation(latitude: 40.4168, longitude: -3.7038) ->afterStateUpdated(function (Set $set, ?array $state): void { $set('latitude', $state['lat']); $set('longitude', $state['lng']); $set('geojson', json_encode($state['geojson'])); }) ->afterStateHydrated(function ($state, $record, Set $set): void { $set('location', [ 'lat' => $record->latitude, 'lng' => $record->longitude, 'geojson' => json_decode(strip_tags($record->description)) ] ); }) ->extraStyles([ 'min-height: 150vh', 'border-radius: 50px' ]) ->liveLocation(true, true, 5000) ->showMarker() ->markerColor("#22c55eff") ->showFullscreenControl() ->showZoomControl() ->draggable() ->tilesUrl("https://tile.openstreetmap.de/{z}/{x}/{y}.png") ->zoom(15) ->detectRetina() ->showMyLocationButton() ->geoMan(true) ->geoManEditable(true) ->geoManPosition('topleft') ->drawCircleMarker() ->rotateMode() ->drawMarker() ->drawPolygon() ->drawPolyline() ->drawCircle() ->dragMode() ->cutPolygon() ->editPolygon() ->deleteLayer() ->setColor('#3388ff') ->setFilledColor('#cad9ec') ]); } ... }
If you wish to update the map location and marker either through an action or after altering other input values, you can trigger a refresh of the map using the following approach:
use Filament\Forms\Components\Actions\Action; use Filament\Forms\Components\Actions; use Filament\Support\Enums\VerticalAlignment; Actions::make([ Action::make('Set Default Location') ->icon('heroicon-m-map-pin') ->action(function (Set $set, $state, $livewire): void { $set('location', ['lat' => '52.35510989541003', 'lng' => '4.883422851562501']); $set('latitude', '52.35510989541003'); $set('longitude', '4.883422851562501'); $livewire->dispatch('refreshMap'); }) ])->verticalAlignment(VerticalAlignment::Start);
liveLocation Option
The liveLocation method accepts three parameters:
bool $send: Determines if the user's live location should be sent.bool $realtime: Controls whether the live location should be sent to the server periodically.int $milliseconds: Sets the interval (in milliseconds) at which the user's location is updated and sent to the server.
Example:
Map::make('location') ->liveLocation(true, true, 10000) // Updates live location every 10 seconds ->showMarker() ->draggable()
Options Table
Here's a table describing all available options and their default values:
| Option | Description | Default Value |
|---|---|---|
| draggable | Allow map dragging | true |
| showMarker | Display marker on the map | true |
| tilesUrl | URL for map tiles | 'http://tile.openstreetmap.org/{z}/{x}/{y}.png' |
| attribution | Map attribution text | null |
| zoomOffset | Zoom offset | -1 |
| tileSize | Tile size | 512 |
| detectRetina | Detect and use retina tiles | true |
| minZoom | Minimum zoom level | 0 |
| maxZoom | Maximum zoom level | 28 |
| zoom | Default zoom level | 15 |
| markerColor | Color of the marker | '#3b82f6' |
| liveLocation | Enable live location updates | [false, false, 5000] |
| showMyLocationButton | Show "My Location" button | false |
| default | Default location | ['lat' => 0, 'lng' => 0] |
| geoMan.show | Enable GeoMan | false |
| geoMan.editable | Allow editing with GeoMan | true |
| geoMan.position | Position of GeoMan controls | 'topleft' |
| geoMan.drawCircleMarker | Allow drawing circle markers | true |
| geoMan.rotateMode | Enable rotate mode | true |
| geoMan.drawMarker | Allow drawing markers | true |
| geoMan.drawPolygon | Allow drawing polygons | true |
| geoMan.drawPolyline | Allow drawing polylines | true |
| geoMan.drawCircle | Allow drawing circles | true |
| geoMan.dragMode | Enable drag mode | true |
| geoMan.cutPolygon | Allow cutting polygons | true |
| geoMan.editPolygon | Allow editing polygons | true |
| geoMan.deleteLayer | Allow deleting layers | true |
| geoMan.color | Stroke color for drawings | '#3388ff' |
| geoMan.filledColor | Fill color for drawings | '#cad9ec' |
Usage As Infolist Field
The MapEntry Infolist field displays a map.
use Dotswan\MapPicker\Infolists\MapEntry; public static function infolist(Infolist $infolist): Infolist { return $infolist ->schema([ MapEntry::make('location') ->extraStyles([ 'min-height: 50vh', 'border-radius: 50px' ]) ->state(fn ($record) => ['lat' => $record?->latitude, 'lng' => $record?->longitude]) ->showMarker() ->markerColor("#22c55eff") ->showFullscreenControl() ->draggable(false) ->zoom(15), ..... ]); }
Usage Guide for Handling Map Locations
This section explains how to handle and display map locations within your application using this package.
Step 1: Define Your Database Schema
Ensure your database table includes latitude and longitude columns. This is essential for storing the coordinates of your locations. You can define your table schema as follows:
$table->double('latitude')->nullable(); $table->double('longitude')->nullable();
Step 2: Retrieve and Set Coordinates
When loading a record, ensure you correctly retrieve and set the latitude and longitude values. Use the following method within your form component:
->afterStateHydrated(function ($state, $record, Set $set): void { $set('location', ['lat' => $record?->latitude, 'lng' => $record?->longitude]); })
Step 3: Add Form Fields for Latitude and Longitude
Add hidden form fields for latitude and longitude to your form. This ensures the values are present but not visible to the user:
TextInput::make('latitude') ->hiddenLabel() ->hidden(), TextInput::make('longitude') ->hiddenLabel() ->hidden()
If you prefer to display these values in a read-only format, replace hidden() with readOnly().
Alternative Approach: Using a Single Location Attribute
If you prefer to handle the location as a single field, you can define a custom attribute in your model. This method avoids the need for separate latitude and longitude columns:
class YourModel extends Model { protected function location(): Attribute { return Attribute::make( get: fn (mixed $value, array $attributes) => [ 'latitude' => $attributes['latitude'], 'longitude' => $attributes['longitude'] ], set: fn (array $value) => [ 'latitude' => $value['latitude'], 'longitude' => $value['longitude'] ], ); } }
This approach encapsulates both latitude and longitude within a single location attribute, streamlining your code.
License
MIT License © Dotswan
Security
We take security seriously. If you discover any bugs or security issues, please help us maintain a secure project by reporting them through our GitHub issue tracker. You can also contact us directly at tech@dotswan.com.
Contribution
We welcome contributions! contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
agelgil/filament-map-picker 适用场景与选型建议
agelgil/filament-map-picker 是一款 基于 JavaScript 开发的 Composer 扩展包,目前已累计 1.77k 次下载、GitHub Stars 达 6, 最近一次更新时间为 2024 年 11 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「filament」 「filamentphp」 「map-picker」 「filament-v3」 「filament-map-picker」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 agelgil/filament-map-picker 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 agelgil/filament-map-picker 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 agelgil/filament-map-picker 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Filament plugin that integrates tabler icons, allowing you to use them seamlessly across Filament forms, tables, actions, and more.
jitone-ai is a powerful FilamentPHP plugin that integrates AI-powered features directly into your Filament forms.
Send Notification to discord channel Webhook using native FilamentPHP Notification Facade class
Alfabank REST API integration
Filament administration, page editing, recovery, settings, and operations for Capell CMS.
Database-driven onboarding for Filament: progress checklists and guided spotlight tours, translatable to any locale.
统计信息
- 总下载量: 1.77k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-11-28