dev-master
9999999-devGoogle map generator for Symfony 2
MIT
The Requires
- php >=5.3.3
- twig/extensions 1.0.*
- symfony/symfony *
bundle symfony google google map
Wallogit.com
2017 © Pedro Peláez
Google map generator for Symfony 2
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., (*1)
First you need to add GoogleMapBundle to composer.json:, (*2)
{
"require": {
"nyxis/google-map-bundle": "dev-master"
}
}
Then download from composer, (*3)
php composer.phar update nyxis/google-map-bundle
You also have to add GoogleMapBundle to your AppKernel.php:, (*4)
// app/AppKernel.php
...
class AppKernel extends Kernel
{
...
public function registerBundles()
{
$bundles = array(
...
new Nyxis\GoogleMapBundle\NyxisGoogleMapBundle()
);
...
return $bundles;
}
...
}
Google map generator for Symfony 2
MIT
bundle symfony google google map