nyxis / google-map-bundle
Google map generator for Symfony 2
Package info
github.com/Nyxis/NyxisGoogleMapBundle
Type:symfony-bundle
pkg:composer/nyxis/google-map-bundle
dev-master
2014-12-04 22:02 UTC
Requires
- php: >=5.3.3
- symfony/symfony: *
- twig/extensions: 1.0.*
This package is not auto-updated.
Last update: 2026-02-28 20:57:49 UTC
README
Bundle which provide Twig tags to build simple Google Maps, based on only https://maps.google.fr/maps web service. This bundle wants to stay simple, to use all over Google Map API, see https://github.com/egeloen/IvoryGoogleMapBundle.
Installation
First you need to add GoogleMapBundle to composer.json:
{
"require": {
"nyxis/google-map-bundle": "dev-master"
}
}
Then download from composer
php composer.phar update nyxis/google-map-bundle
You also have to add GoogleMapBundle to your AppKernel.php:
// app/AppKernel.php ... class AppKernel extends Kernel { ... public function registerBundles() { $bundles = array( ... new Nyxis\GoogleMapBundle\NyxisGoogleMapBundle() ); ... return $bundles; } ... }