PHP code example of farhanwazir / laravel-map-form-field

1. Go to this page and download the library: Download farhanwazir/laravel-map-form-field library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

farhanwazir / laravel-map-form-field example snippets


        Form::map('mappy', null, [
            'height' => '350px',
            'onStaged' => 'onMapInitialized',
            'position' => $position,
            'async' => true, /* for ajax use only, when use async then it needs to call loadScript_map() manually 
                                after response print in screen. */
            'onMarkerPositionChanged' => 'onMarkerPositionChanged',
        ], [
            'latitude' => ['name' => 'latitude', 'class' => 'map-place-search-controls map-place-search map-latlng-controls'],
            'longitude' => ['name' => 'longitude', 'class' => 'map-place-search-controls map-place-search map-latlng-controls'],
            'search' => ['class' => 'map-place-search-controls map-place-search'],
        ]);