Download the PHP package cethyworks/google-map-display-bundle without Composer
On this page you can find all versions of the php package cethyworks/google-map-display-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download cethyworks/google-map-display-bundle
More information about cethyworks/google-map-display-bundle
Files in cethyworks/google-map-display-bundle
Download cethyworks/google-map-display-bundle
More information about cethyworks/google-map-display-bundle
Files in cethyworks/google-map-display-bundle
Vendor cethyworks
Package google-map-display-bundle
Short Description Provides a way to display google maps from address(es) (w/ the javascript API), the most minimalist, unobtrusive way possible.
License MIT
Package google-map-display-bundle
Short Description Provides a way to display google maps from address(es) (w/ the javascript API), the most minimalist, unobtrusive way possible.
License MIT
Please rate this library. Is it a good library?
Informations about the package google-map-display-bundle
Cethyworks\GoogleMapDisplayBundle
Provides a way to display google maps from address(es) (w/ the javascript API), the most minimalist, unobtrusive way possible.
Install
1. Composer require
$ composer require cethyworks/google-map-display-bundle
2. Register bundles
// AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
// ...
new Cethyworks\ContentInjectorBundle\CethyworksContentInjectorBundle(),
new Cethyworks\GooglePlaceAutocompleteBundle\CethyworksGooglePlaceAutocompleteBundle(),
];
// ...
How to use
1. Update (optionally) your config.yml
with :
cethyworks_google_map_display:
google:
api_key: 'your_api_key'
2. Call the handler to add maps :
// retrieve the command handler
/** @var GoogleMapDisplayCommandHandler $handler */
$commandHandler = $container->get(GoogleMapDisplayCommandHandler::class);
// add address & html id to display the map
$commandHandler->addMap('map_id', 'address 1');
// optionnally add other maps
// $commandHandler->addMap('map2', 'address 2');
// ...
4. Done ! (the handler register automatically the Command)
How it works
The ContentInjectorSubscriber
will inject the template containing the javascript code (with mapIds, addresses & the google api_key) into the Response
automatically.
Additional information
All versions of google-map-display-bundle with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.6.17
cethyworks/content-injector-bundle Version ^2.0
symfony/dependency-injection Version ^3.3
symfony/config Version ^3.3
twig/twig Version ^1.0||^2.0
cethyworks/content-injector-bundle Version ^2.0
symfony/dependency-injection Version ^3.3
symfony/config Version ^3.3
twig/twig Version ^1.0||^2.0
The package cethyworks/google-map-display-bundle contains the following files
Loading the files please wait ....