Package Data | |
---|---|
Maintainer Username: | mastani |
Maintainer Contact: | amin.mastani@yahoo.com (Amin Mastani) |
Package Create Date: | 2018-07-12 |
Package Last Update: | 2025-03-06 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-03-29 15:03:32 |
Package Statistics | |
---|---|
Total Downloads: | 1,011,013 |
Monthly Downloads: | 45,027 |
Daily Downloads: | 623 |
Total Stars: | 42 |
Total Watchers: | 3 |
Total Forks: | 13 |
Total Open Issues: | 1 |
Generate static map using Google Map API in Laravel.
$ composer require mastani/laravel-google-static-map
The package will automatically register itself.
$ composer require mastani/laravel-google-static-map
Next up, the service provider must be registered:
// config/app.php
'providers' => [
...
Mastani\GoogleStaticMap\GoogleStaticMapServiceProvider::class,
];
Another way is install the component through composer.
Either run
$ composer require mastani/laravel-google-static-map
or add
"mastani/laravel-google-static-map": "dev-master"
to the require section of your composer.json.
$map = new \Mastani\GoogleStaticMap\GoogleStaticMap('Place google map API key or leave it empty');
$url = $map->setCenter('Tehran')
->setMapType(\Mastani\GoogleStaticMap\MapType::RoadMap)
->setZoom(14)
->setSize(600, 600)
->setFormat(\Mastani\GoogleStaticMap\Format::JPG)
->addMarker('Tehran', '1', 'red', \Mastani\GoogleStaticMap\Size::Small)
->addMarkerLatLng(35.6907488, 51.3919293, '1', 'red', \Mastani\GoogleStaticMap\Size::Small)
->make(); // Return url contain map address.
// or
->download($path); // Download map image
| Function | Description | | :--- | :--- | | setSecret(secret) | Set signing secret key. | | setCenter(location) | Set map center with address. | | setCenterLatLng(latitude, longitude) | Set map center with latitude and longitude. | | setZoom(zoom) | Set map zoom. | | setScale(scale) | Set map scale. | | setSize(width, height) | Set map size. | | setMapType(type as MapType) | Set map type. | | setMapId(id) | Set a map ID previously created in Cloud Console. | | setFormat(format as Format) | Set map format. | | addMarker(center, label, color, size) | Add marker to map. | | addMarkerLatLng(latitude, longitude, label, color, size) | Add marker to map with latitude and longitude. | | addMarkerWithIcon(center, icon, shadow) | Add custom marker to map. | | addMarkerLatLngWithIcon(latitude, longitude, icon, shadow) | Add marker to map with latitude and longitude. | | make() | Make url string. | | download($path = 'current path', $name_length = 10) | Download map image in provided path. |
The MIT License (MIT). Please see License File for more information.