nyxis/google-map-bundle

Google map generator for Symfony 2

Installs: 159

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 1

Type:symfony-bundle

dev-master 2014-12-04 22:02 UTC

This package is not auto-updated.

Last update: 2024-04-13 11:56:23 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;
        }
        ...
    }