elbgoods / nova-mapbox-marker-field
Show geo marker on a mapbox map
v1.1
2022-08-08 20:37 UTC
Requires
- php: >=8.0
- laravel/nova: ^4.1
README
Requirements
php: >=8.0
laravel/nova: ^4.1
Features
- Shows a dead simple geo marker based on latitude & longitude
Installation
Install the package in a Laravel Nova project via Composer:
composer require elbgoods/nova-mapbox-marker-field
Usage
Expects a mapbox access-token specified in config/services.php
:
<?php return [ 'mapbox' => [ 'key' => env('MAPBOX_KEY', 'your-default-key'), ],
use Elbgoods\NovaMapboxMarkerField\MapboxMarkerField; public function fields(Request $request) { return [ MapboxMarkerField::make('Marker') ->longitude($this->longitude) ->latitude($this->latitude) ->zoom(8), ]; }
Screenshot
License
This project is open-sourced software licensed under the MIT license.