Skip to content

elbgoods/nova-mapbox-marker-field

Repository files navigation

Nova Mapbox Marker Field

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

Detail View

License

This project is open-sourced software licensed under the MIT license.