Package Data | |
---|---|
Maintainer Username: | NJT |
Maintainer Contact: | nijatasadov@gmail.com (:Nijat Asadov) |
Package Create Date: | 2016-05-28 |
Package Last Update: | 2017-08-16 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:25:44 |
Package Statistics | |
---|---|
Total Downloads: | 6,895 |
Monthly Downloads: | 3 |
Daily Downloads: | 1 |
Total Stars: | 8 |
Total Watchers: | 1 |
Total Forks: | 2 |
Total Open Issues: | 3 |
First, pull in the package through Composer.
Run composer require nicat/static-map
And then, if using Laravel 5, include the service provider within config/app.php
.
'providers' => [
Nicat\StaticMap\StaticMapServiceProvider::class,
];
And, for convenience, add a facade alias to this same file at the bottom:
'aliases' => [
'StaticMap' => Nicat\StaticMap\Facade\StaticMap::class,
];
If you need to modify the Static Map partials, you can run:
php artisan vendor:publish
Within your controllers
StaticMap::Google('London')
You may also do:
StaticMap::Google('London')
StaticMap::Google('37.6213129,-122.3811441')
StaticMap::GoogleWithImg('London')
StaticMap::Google('London', ['with' => 600, 'height' => 500, 'mapType' => 'hybrid'])
You can modify partials
'width' => 600, // Width of Map image
'height' => 400, // Height of Map Image
'mapType' => 'roadmap', // Map type ['roadmap', 'terrain', 'satellite', 'hyrid']
'imageFormat' => 'png', // gif, png or jpg
'zoom' => 14, // Zoom of Map
You may also can add markers:
{!! StaticMap::GoogleWithImg('London', ['markers' => ['center' => 'Westminster London', 'label' => '2'], 'imageType' => 'gif'])
If you want just add marker of main center
{!! StaticMap::GoogleWithImg('37.6213129,-122.3811441', ['markers' => true]) !!}
If you want just use with map link
{!! StaticMap::GoogleWithLink('37.6213129,-122.3811441', ['markers' => true]) !!}
Marker options
'center' => '37.6213129,-122.3811441', // or 'San Francisco International Airport'
'label' => '1', // Label Name of Marker
'color' => '0xff0000', // color of marker
'size' => 'mid', // tiny (Small),small (Medium), mid (Large)
##Some examples
{!! StaticMap::GoogleWithImg('San Francisco International Airport', ['markers' => [
['center' => 'San Bruno', 'label' => '2'],
['center' => '37.6213129,-122.3711441', 'label' => '1']
]
]) !!}
{!! StaticMap::GoogleWithImg('37.6213129,-122.3811441', ['with' => 600, 'height' => 500, 'mapType' => 'hybrid']) !!}