| 1 | <?php | ||
| 21 | class IndexController extends AbstractActionController | ||
| 22 | { | ||
| 23 | /** | ||
| 24 | * Used geo coder plugin. Copy Geo.options.local.php.dist in your autoload and configure it | ||
| 25 | * | ||
| 26 | * @var string $plugin | ||
| 27 | */ | ||
| 28 | protected $plugin; | ||
| 29 | |||
| 30 | /** | ||
| 31 | * Used geo coder server. Copy Geo.options.local.php.dist in your autoload and configure it | ||
| 32 | * | ||
| 33 | * @var string $geoCoderUrl | ||
| 34 | */ | ||
| 35 | protected $geoCoderUrl; | ||
| 36 | |||
| 37 |     public function __construct(ModuleOptions $options) { | ||
| 41 | |||
| 42 | /** | ||
| 43 | * @return JsonModel | ||
| 44 | */ | ||
| 45 | public function indexAction() | ||
| 51 | } |