rollproject/google-static-map

Maintainers

Package info

gitlab.com/donny.rollproject/google-static-map

Issues

pkg:composer/rollproject/google-static-map

Statistics

Installs: 11

Dependents: 0

Suggesters: 0

Stars: 0

dev-master 2018-04-20 08:02 UTC

This package is not auto-updated.

Last update: 2026-03-13 03:56:40 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);