Coder Social home page Coder Social logo

ubpon / filament-google-map-location-picker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from yemenpoint/filament-google-map-location-picker

0.0 0.0 0.0 118 KB

filament-google-map-location-picker

License: MIT License

PHP 36.63% Blade 63.37%

filament-google-map-location-picker's Introduction

Google map Location Picker

forked from https://packagist.org/packages/sadiq/filament-gmap-location-picker

Installation

You can install the package via composer:

 composer require yemenpoint/filament-google-map-location-picker

Optionally, you can publish the config using

php artisan vendor:publish --tag="filament-google-map-location-picker-config"

Config

filament-google-map-location-picker.php

<?php

return [
    'google_map_key' => "",
];

make migration location column to database

add location column to database

...
        Schema::table('table_name', function (Blueprint $table) {
            $table->json("location")->nullable();
        });
...
use Yemenpoint\FilamentGoogleMapLocationPicker\Forms\Components\LocationPicker;

...

    public static function form(Form $form): Form
    {
        return $form->schema([
              LocationPicker::make('location')
                  ->default(json_encode(["lat" => 15.356893920277, "lng" => 44.173358011179]))//set default location
                  ->defaultZoom(12)// set zoom 
                  ->setLocationCenter([
                      'lat' => 15.356893920277,
                      'lng' => 44.173358011179,
                  ]) //set location center 
                  ->required()
                  ->columnSpan(2),
        ]);
    }
...

Model

add column name to fillable

...

    protected $fillable = [
        "location"
    ];
...

if u have separate column for lat and lng add this Mutator

...
    function setLocationAttribute($value)
    {
        //replace lat_column_name and lng_column_name with your column names
        $this->attributes['location'] = $value;
        $_location = @json_decode($value,true);
        $this->attributes['lat_column_name'] = data_get($_location,"lat");
        $this->attributes['lng_column_name'] = data_get($_location,"lng");
    }

...

Credits

License

The MIT License (MIT). Please see License File for more information.

filament-google-map-location-picker's People

Contributors

yemenpoint avatar wdarins avatar ubpon avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.