resq/src/Service/GISManager/Bing.php
2019-12-05 07:40:52 +00:00

21 lines
356 B
PHP

<?php
namespace App\Service\GISManager;
use App\Service\GISManagerInterface;
class Bing implements GISManagerInterface
{
const JS_INIT_FILE = 'initBingMap.js';
public function getJSInitFile()
{
// return the bing map js file: initBingMap.js
return self::JS_INIT_FILE;
}
public function getJSJOFile()
{
}
}