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

21 lines
365 B
PHP

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