23 lines
459 B
PHP
23 lines
459 B
PHP
<?php
|
|
|
|
namespace App\Service\GISManager;
|
|
|
|
use App\Service\GISManagerInterface;
|
|
|
|
class OpenStreet implements GISManagerInterface
|
|
{
|
|
const JS_INIT_FILE = 'initOpenStreetMap.js';
|
|
const JS_JO_FILE = 'joOpenStreetMap.js';
|
|
|
|
public function getJSInitFile()
|
|
{
|
|
// return the openstreet map js file: initOpenStreetMap.js
|
|
return self::JS_INIT_FILE;
|
|
}
|
|
|
|
public function getJSJOFile()
|
|
{
|
|
return self::JS_JO_FILE;
|
|
}
|
|
}
|
|
|