rollproject / google-static-map
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Forks: 0
pkg:composer/rollproject/google-static-map
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is not auto-updated.
Last update: 2025-10-10 01:59:56 UTC
README
Installation
composer require vlobchuk/google-static-map
Here's an example:
$map = new StaticMap();
$map->setZoom(16);
$map->setType(StaticMap::T_SATELLITE);
$urlGenerator = new UrlGenerator();
$map->addMarker(new Marker(new Coordinate(59.9386300, 30.3141300), new MarkerStyle()));
$url = $urlGenerator->generate($map);