vlobchuk / google-static-map
v0.1.4
2015-10-29 14:53 UTC
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is not auto-updated.
Last update: 2024-09-18 16:58:07 UTC
README
安装
composer require vlobchuk/google-static-map
以下是一个示例
$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);