13 lines
210 B
PHP
13 lines
210 B
PHP
<?php
|
|
|
|
namespace App\Service;
|
|
|
|
interface GISManagerInterface
|
|
{
|
|
// returns the actual JS file
|
|
public function getJSInitFile();
|
|
|
|
// return the JS file for JO map
|
|
public function getJSJOFile();
|
|
}
|
|
|