vlobchuk/google-static-map

Maintainers

Package info

github.com/vlobchuk/google-static-map

Issues

pkg:composer/vlobchuk/google-static-map

Statistics

Installs: 27 398

Dependents: 1

Suggesters: 0

Stars: 0

v0.1.4 2015-10-29 14:53 UTC

This package is not auto-updated.

Last update: 2026-03-05 00:12:05 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);