gregumo / WidgetGmap

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Victoire DCMS Google Maps Bundle

##What is the purpose of this bundle

This bundles gives you access to the Google Maps Widget. This widget can put a dynamic Google Maps within your website with the following settings :

  • Latitud
  • Longitud
  • Map's zoom
  • Title of the Map
  • Hide or not the pointer
  • Import of any KML File

##Set Up Victoire

If you haven't already, you can follow the steps to set up Victoire here

##Install the bundle

Run the following composer command :

php composer.phar require friendsofvictoire/gmap-widget

###Reminder

Do not forget to add the bundle in your AppKernel !

    class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            $bundles = array(
                ...
                new Victoire\Widget\GmapBundle\VictoireWidgetGmapBundle(),
            );

            return $bundles;
        }
    }

Parameters

Add your api key in your app parameters

    victoire_widget_gmap.api_key: xxx

##KML

The widget generate a bug if the KML file is upload on a local project. You can test KML import with this example given by Google.

##Multiple widget & Google Maps API

If you use several widgets Google Maps on the same page, in order to prevent each one of them to make Google Maps API call, a javascript is used to call once and for all thhe API. This javascript triggers an event with only one Google Maps callback to initialize the widgets.

About

License:MIT License


Languages

Language:HTML 52.2%Language:PHP 42.3%Language:JavaScript 5.5%