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