mkebza / google-maps-bundle
Symfony bundle for some Google Maps functions
Installs: 2 039
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.1.3
- guzzlehttp/guzzle: ~6.0
- symfony/cache: ~3.4|~4.0
- symfony/config: ~3.4|~4.0
- symfony/dependency-injection: ~3.4|~4.0
- symfony/options-resolver: ~3.4|~4.0
- symfony/twig-bundle: ~3.4|~4.0
Requires (Dev)
- symfony/phpunit-bridge: ^4.1
This package is auto-updated.
Last update: 2025-03-13 18:15:51 UTC
README
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require mkebza/google-maps-bundle
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require <package-name>
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new <vendor>\<bundle-name>\<bundle-long-name>(), ); // ... } // ... }
Configuration
Bundle requires only one configuration, Google Map API key,
m_kebza_google_maps: api_key: <your api key>
Features
Location embeddable
This bundle provides Location
(MKebza\GoogleMaps\Entity\Embeddable\Location
)
which can be used in your doctrine entiteis. This type provides as well shortcut
for creating markers getMarker(...)
Distance
For calculation you can use either MKebza\GoogleMaps\Service\DistanceCalculator
service
which uses Location object as its arguments or in your twig templates helper gmaps_distance(origin, destination)
.
Both returns MKebza\GoogleMaps\Service\Distance
, which hold information about duration / distance
and can convert basic units as well.
Static maps
Again there is service MKebza\GoogleMaps\Service\StaticMap
and twig helper gmaps_static
which
both have same set of arguments.
Parameters:
key
- Your google maps api key, automatically taken from configurationsize
- can be either300x300
or[300, 300]
formatcenter
- center point for your google mapzoom
- zoom levelscale
- density of pixelsformat
- required image format, default pngmaptype
- requested maptype, default roadmaplanguage
- requested language, default your app localemarkers
- array ofMKebza\GoogleMaps\Service\Marker
objects to display in the map
Markers
Markers can be created from options object or by itself, they function as factory with
methods fromLatitudeLongitude($lat, $long, $params)
and
fromName($name, $params)
.
Parameters:
size
- size of markercolor
- hex color, eg.333333
for graylabel
- One letter label for markericon
- URL to iconanchor
- anchor for icon
For more documentation look at https://developers.google.com/maps/documentation/maps-static/intro
Tests
Running tests is with vendor/bin/simple-phpunit