WIP: Resolve "Use bing maps" #1069

Draft
korina.cordero wants to merge 16 commits from 221-use-bing-maps into master
3 changed files with 26 additions and 0 deletions
Showing only changes of commit 612c9327d6 - Show all commits

View file

@ -0,0 +1,7 @@
<?php
namespace App\Service;
class BingMapManager
{
}

View file

@ -0,0 +1,7 @@
<?php
namespace App\Service;
class GoogleMapManager
{
}

View file

@ -0,0 +1,12 @@
<?php
namespace App\Service;
interface MapManagerInterface
{
/*
* Return a map to be used to display location
*
*/
public function jsDisplayMap();
}