resq/src/Service/GISManager/Bing.php
2019-12-03 09:42:23 +00:00

17 lines
309 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;
}
}