1
2
3
4
5
6
7
8
9
|
<?php
require('phpClasses/autoload.php');
$dbConnection = new DbConnection();
$imgIndex = new ImgIndex($dbConnection);
$tileStore = new TileStore($dbConnection);
$tileStore->outputTile($_GET['imageId'], $_GET['detector'], $_GET['zoom'], $_GET['x'], $_GET['y']);
?>
|