';
}
echo '';
}
/**
* Returns html viewer
*/
public function getHtml() {
$this->setDatasets();
$maps = array_merge($this->fileLayer, $this->dbLayer);
header('Content-Type: text/html;charset=UTF-8');
echo '' . $this->config['serverTitle'] . '';
echo '
Welcome to ' . $this->config['serverTitle'] . '
This server distributes maps to desktop, web, and mobile applications.
The mapping data are available as OpenGIS Web Map Tiling Service (OGC WMTS), OSGEO Tile Map Service (TMS), and popular XYZ urls described with TileJSON metadata.
';
if (!isset($_SERVER['HTACCESS'])) {
echo '
Warning: No .htaccess support!
';
}
if (!isset($maps)) {
echo '
No maps available yet
Ready to go - just upload some maps into directory:' . getcwd() . '/ on this server.
Note: The maps can be a directory with tiles in XYZ format with metadata.json file.
You can easily convert existing geodata (GeoTIFF, ECW, MrSID, etc) to this tile structure with MapTiler Cluster or open-source projects such as GDAL2Tiles or MapTiler or simply upload any maps in MBTiles format made by TileMill. Helpful is also the mbutil tool. Serving directly from .mbtiles files is supported, but with decreased performance.
';
} else {
echo '
';
foreach ($maps as $map) {
echo "
" . $map['name'] . '
';
}
echo '
';
}
echo '';
}
}
/**
* JSON service
*/
class Json extends Server {
/**
* Callback for JSONP default grid
* @var string
*/
private $callback = 'grid';
/**
* @param array $params
*/
public $layer = 'index';
/**
* @var integer
*/
public $z;
/**
* @var integer
*/
public $y;
/**
* @var integer
*/
public $x;
/**
* @var string
*/
public $ext;
/**
*
* @param array $params
*/
public function __construct($params) {
parent::__construct();
parent::setParams($params);
parent::setDatasets();
if (isset($_GET['callback']) && !empty($_GET['callback'])) {
$this->callback = $_GET['callback'];
}
}
/**
* Adds metadata about layer
* @param array $metadata
* @return array
*/
public function metadataTileJson($metadata) {
$metadata['tilejson'] = '2.0.0';
$metadata['scheme'] = 'xyz';
$tiles = array();
//foreach ($this->config['baseUrls'] as $url)
$tiles[] = 'http://' . $this->config['host'] . $metadata['basename'] . '/{z}/{x}/{y}.' . $metadata['format'];
$metadata['tiles'] = $tiles;
return $metadata;
}
/**
* Creates JSON from array
* @param string $basename
* @return string
*/
private function createJson($basename) {
$maps = array_merge($this->fileLayer, $this->dbLayer);
if ($basename == 'index') {
$output = '[';
foreach ($maps as $map) {
$output = $output . json_encode($this->metadataTileJson($map), JSON_UNESCAPED_SLASHES) . ',';
}
$output = substr_replace($output, ']', -1);
} else {
foreach ($maps as $map) {
if (strpos($map['basename'], $basename) !== false) {
$output = json_encode($this->metadataTileJson($map), JSON_UNESCAPED_SLASHES);
break;
}
}
if (!isset($output)) {
$output = 'TileServer: unknown map ' . $basename;
echo 'TileServer: unknown map ' . $basename;
die;
}
}
return $output;
}
/**
* Returns JSON with callback
*/
public function getJson() {
header('Access-Control-Allow-Origin: *');
header("Content-Type:application/javascript charset=utf-8");
echo $this->createJson($this->layer);
}
/**
* Returns JSONP with callback
*/
public function getJsonp() {
header('Access-Control-Allow-Origin: *');
header("Content-Type:text/javascript charset=utf-8");
echo $this->callback . '(' . $this->createJson($this->layer) . ');';
}
/**
* Returns UTFGrid in JSON format
*/
public function getUTFGrid() {
parent::getUTFGrid($this->layer, $this->z, $this->y, $this->x);
}
}
/**
* Web map tile service
*/
class Wmts extends Server {
/**
* @param array $params
*/
public $layer;
/**
* @var integer
*/
public $z;
/**
* @var integer
*/
public $y;
/**
* @var integer
*/
public $x;
/**
* @var string
*/
public $ext;
/**
*
* @param array $params
*/
public function __construct($params) {
parent::__construct();
parent::setDatasets();
}
/**
* Returns tilesets getCapabilities
*/
public function getCapabilities() {
header("Content-type: application/xml");
echo '';
echo '' . $this->config['serverTitle'] . 'OGC WMTS1.0.0RESTfulKVPRESTfulKVP';
$maps = array_merge($this->fileLayer, $this->dbLayer);
$mercator = new GlobalMercator();
foreach ($maps as $m) {
if (strpos($m['basename'], '.') !== false) {
$basename = explode('.', $m['basename']);
} else {
$basename = $m['basename'];
}
$title = (array_key_exists('name', $m)) ? $m['name'] : $basename;
$profile = $m['profile'];
$bounds = $m['bounds'];
$format = $m['format'];
$mime = ($format == 'jpg') ? 'image/jpeg' : 'image/png';
if ($profile == 'geodetic') {
$tileMatrixSet = "WGS84";
} else {
$tileMatrixSet = "GoogleMapsCompatible";
list( $minx, $miny ) = $mercator->LatLonToMeters($bounds[1], $bounds[0]);
list( $maxx, $maxy ) = $mercator->LatLonToMeters($bounds[3], $bounds[2]);
$bounds3857 = array($minx, $miny, $maxx, $maxy);
}
echo'' . $title . '' . $basename . '';
echo '' . $bounds[0] . ' ' . $bounds[1] . '' . $bounds[2] . ' ' . $bounds[3] . '' . $mime . '' . $tileMatrixSet . '';
}
echo 'GoogleMapsCompatiblethe wellknown "GoogleMapsCompatible" tile matrix set defined by OGC WMTS specificationGoogleMapsCompatibleurn:ogc:def:crs:EPSG:6.18:3:3857urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible0559082264.0287178-20037508.34278925 20037508.34278925256256111279541132.0143589-20037508.34278925 20037508.34278925256256222139770566.0071794-20037508.34278925 20037508.3427892525625644369885283.00358972-20037508.34278925 20037508.3427892525625688434942641.50179486-20037508.34278925 20037508.342789252562561616517471320.75089743-20037508.34278925 20037508.34278925256256323268735660.375448715-20037508.34278925 20037508.34278925256256646474367830.187724357-20037508.34278925 20037508.3427892525625612812882183915.093862179-20037508.34278925 20037508.3427892525625625625691091957.546931089-20037508.34278925 20037508.3427892525625651251210545978.7734655447-20037508.34278925 20037508.342789252562561024102411272989.3867327723-20037508.34278925 20037508.342789252562562048204812136494.6933663862-20037508.34278925 20037508.34278925256256409640961368247.34668319309-20037508.34278925 20037508.34278925256256819281921434123.67334159654-20037508.34278925 20037508.3427892525625616384163841517061.83667079827-20037508.34278925 20037508.342789252562563276832768168530.918335399136-20037508.34278925 20037508.342789252562566553665536174265.459167699568-20037508.34278925 20037508.34278925256256131072131072182132.729583849784-20037508.34278925 20037508.34278925256256262144262144WGS84GoogleCRS84Quadurn:ogc:def:crs:EPSG:6.3:4326-180.000000 -90.000000180.000000 90.000000urn:ogc:def:wkss:OGC:1.0:GoogleCRS84Quad0279541132.0143588781356811523490.000000 -180.000000256256211139770566.0071794390678405761790.000000 -180.00000025625642269885283.0035897195339202880990.000000 -180.00000025625684334942641.5017948597669601440490.000000 -180.000000256256168417471320.7508974298834800720290.000000 -180.000000256256321658735660.3754487149417400360190.000000 -180.000000256256643264367830.1877243574708700180190.000000 -180.0000002562561286472183915.0938621787354350090090.000000 -180.00000025625625612881091957.5469310893677175045090.000000 -180.0000002562565122569545978.7734655446838587522590.000000 -180.000000256256102451210272989.3867327723419293761390.000000 -180.0000002562562048102411136494.6933663861709646880690.000000 -180.000000256256409620481268247.3466831930854823440390.000000 -180.000000256256819240961334123.6733415965427411720290.000000 -180.0000002562561638481921417061.8366707982531806919790.000000 -180.0000002562563276816384158530.9183353991265903459990.000000 -180.0000002562566553632768164265.4591676995632951729990.000000 -180.00000025625613107265536172132.7295838497857403126590.000000 -180.000000256256262144131072';
}
/**
* Returns tile via WMTS specification
*/
public function getTile() {
$request = $this->getGlobal('Request');
if (isset($_GET['request'])) {
if (strpos('/', $_GET['Format']) !== FALSE) {
$format = explode('/', $_GET['Format']);
} else {
$format = $this->getGlobal('Format');
}
parent::getTile($this->getGlobal('Layer'), $this->getGlobal('TileMatrix'), $this->getGlobal('TileRow'), $this->getGlobal('TileRow'), $format[1]);
} else {
parent::getTile($this->layer, $this->z, $this->y, $this->x, $this->ext);
}
}
}
/**
* Tile map service
*/
class Tms extends Server {
/**
* @param array $params
*/
public $layer;
/**
* @var integer
*/
public $z;
/**
* @var integer
*/
public $y;
/**
* @var integer
*/
public $x;
/**
* @var string
*/
public $ext;
/**
*
* @param array $params
*/
public function __construct($params) {
parent::__construct();
parent::setParams($params);
parent::setDatasets();
}
/**
* Returns getCapabilities metadata request
*/
public function getCapabilities() {
$maps = array_merge($this->fileLayer, $this->dbLayer);
header("Content-type: application/xml");
echo'';
foreach ($maps as $m) {
$basename = $m['basename'];
$title = (array_key_exists('name', $m) ) ? $m['name'] : $basename;
$profile = $m['profile'];
if ($profile == 'geodetic') {
$srs = "EPSG:4326";
} else {
$srs = "EPSG:3857";
echo '';
}
}
echo '';
}
/**
* Prints metadata about layer
*/
public function getLayerCapabilities() {
$maps = array_merge($this->fileLayer, $this->dbLayer);
foreach ($maps as $map) {
if (strpos($map['basename'], $this->layer) !== false) {
$m = $map;
break;
}
}
$title = (array_key_exists('name', $m)) ? $m['name'] : $m['basename'];
$description = (array_key_exists('description', $m)) ? $m['description'] : "";
$bounds = $m['bounds'];
if ($m['profile'] == 'geodetic') {
$srs = "EPSG:4326";
$originx = -180.0;
$originy = -90.0;
$initialResolution = 0.703125;
} else {
$srs = "EPSG:3857";
$originx = -20037508.342789;
$originy = -20037508.342789;
$mercator = new GlobalMercator();
list( $minx, $miny ) = $mercator->LatLonToMeters($bounds[1], $bounds[0]);
list( $maxx, $maxy ) = $mercator->LatLonToMeters($bounds[3], $bounds[2]);
$bounds = array($minx, $miny, $maxx, $maxy);
$initialResolution = 156543.03392804062;
}
$mime = ($m['format'] == 'jpg') ? 'image/jpeg' : 'image/png';
header("Content-type: application/xml");
echo '' . htmlspecialchars($title) . '' . htmlspecialchars($description) . '' . $srs . '';
for ($zoom = $m['minzoom']; $zoom < $m['maxzoom'] + 1; $zoom++) {
echo '';
}
echo'';
}
/**
* Process getTile request
*/
public function getTile() {
parent::getTile($this->layer, $this->z, $this->y, $this->x, $this->ext);
}
}
/*
GlobalMapTiles - part of Aggregate Map Tools
Version 1.0
Copyright (c) 2009 The Bivings Group
All rights reserved.
Author: John Bafford
http://www.bivings.com/
http://bafford.com/softare/aggregate-map-tools/
Based on GDAL2Tiles / globalmaptiles.py
Original python version Copyright (c) 2008 Klokan Petr Pridal. All rights reserved.
http://www.klokan.cz/projects/gdal2tiles/
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublic ense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The abov
e copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
class GlobalMercator {
var $tileSize;
var $initialResolution;
var $originShift;
//Initialize the TMS Global Mercator pyramid
function __construct($tileSize = 256) {
$this->tileSize = $tileSize;
$this->initialResolution = 2 * M_PI * 6378137 / $this->tileSize;
# 156543.03392804062 for tileSize 256 Pixels
$this->originShift = 2 * M_PI * 6378137 / 2.0;
# 20037508.342789244
}
//Converts given lat/lon in WGS84 Datum to XY in Spherical Mercator EPSG:900913
function LatLonToMeters($lat, $lon) {
$mx = $lon * $this->originShift / 180.0;
$my = log(tan((90 + $lat) * M_PI / 360.0)) / (M_PI / 180.0);
$my *= $this->originShift / 180.0;
return array($mx, $my);
}
//Converts XY point from Spherical Mercator EPSG:900913 to lat/lon in WGS84 Datum
function MetersToLatLon($mx, $my) {
$lon = ($mx / $this->originShift) * 180.0;
$lat = ($my / $this->originShift) * 180.0;
$lat = 180 / M_PI * (2 * atan(exp($lat * M_PI / 180.0)) - M_PI / 2.0);
return array($lat, $lon);
}
//Converts pixel coordinates in given zoom level of pyramid to EPSG:900913
function PixelsToMeters($px, $py, $zoom) {
$res = $this->Resolution($zoom);
$mx = $px * $res - $this->originShift;
$my = $py * $res - $this->originShift;
return array($mx, $my);
}
//Converts EPSG:900913 to pyramid pixel coordinates in given zoom level
function MetersToPixels($mx, $my, $zoom) {
$res = $this->Resolution($zoom);
$px = ($mx + $this->originShift) / $res;
$py = ($my + $this->originShift) / $res;
return array($px, $py);
}
//Returns a tile covering region in given pixel coordinates
function PixelsToTile($px, $py) {
$tx = ceil($px / $this->tileSize) - 1;
$ty = ceil($py / $this->tileSize) - 1;
return array($tx, $ty);
}
//Returns tile for given mercator coordinates
function MetersToTile($mx, $my, $zoom) {
list($px, $py) = $this->MetersToPixels($mx, $my, $zoom);
return $this->PixelsToTile($px, $py);
}
//Returns bounds of the given tile in EPSG:900913 coordinates
function TileBounds($tx, $ty, $zoom) {
list($minx, $miny) = $this->PixelsToMeters($tx * $this->tileSize, $ty * $this->tileSize, $zoom);
list($maxx, $maxy) = $this->PixelsToMeters(($tx + 1) * $this->tileSize, ($ty + 1) * $this->tileSize, $zoom);
return array($minx, $miny, $maxx, $maxy);
}
//Returns bounds of the given tile in latutude/longitude using WGS84 datum
function TileLatLonBounds($tx, $ty, $zoom) {
$bounds = $this->TileBounds($tx, $ty, $zoom);
list($minLat, $minLon) = $this->MetersToLatLon($bounds[0], $bounds[1]);
list($maxLat, $maxLon) = $this->MetersToLatLon($bounds[2], $bounds[3]);
return array($minLat, $minLon, $maxLat, $maxLon);
}
//Resolution (meters/pixel) for given zoom level (measured at Equator)
function Resolution($zoom) {
return $this->initialResolution / (1 < $zoom);
}
}
/**
* Simple router
*/
class Router {
/**
* @param array $routes
*/
public static function serve($routes) {
$request_method = strtolower($_SERVER['REQUEST_METHOD']);
$path_info = '/';
if (!empty($_SERVER['PATH_INFO'])) {
$path_info = $_SERVER['PATH_INFO'];
} else if (!empty($_SERVER['ORIG_PATH_INFO']) && $_SERVER['ORIG_PATH_INFO'] !== '/tileserver.php') {
$path_info = $_SERVER['ORIG_PATH_INFO'];
} else {
if (!empty($_SERVER['REQUEST_URI'])) {
$path_info = (strpos($_SERVER['REQUEST_URI'], '?') > 0) ? strstr($_SERVER['REQUEST_URI'], '?', true) : $_SERVER['REQUEST_URI'];
}
}
$discovered_handler = null;
$regex_matches = array();
if (isset($routes[$path_info])) {
$discovered_handler = $routes[$path_info];
} else if ($routes) {
$tokens = array(
':string' => '([a-zA-Z]+)',
':number' => '([0-9]+)',
':alpha' => '([a-zA-Z0-9-_]+)'
);
foreach ($routes as $pattern => $handler_name) {
$pattern = strtr($pattern, $tokens);
if (preg_match('#^/?' . $pattern . '/?$#', $path_info, $matches)) {
$discovered_handler = $handler_name;
$regex_matches = $matches;
break;
}
}
}
$handler_instance = null;
if ($discovered_handler) {
if (is_string($discovered_handler)) {
if (strpos($discovered_handler, ':') !== false) {
$discoverered_class = explode(':', $discovered_handler);
$discoverered_method = explode(':', $discovered_handler);
$handler_instance = new $discoverered_class[0]($regex_matches);
call_user_func(array($handler_instance, $discoverered_method[1]));
} else {
$handler_instance = new $discovered_handler($regex_matches);
}
} elseif (is_callable($discovered_handler)) {
$handler_instance = $discovered_handler();
}
} else {
//default page
$handler_instance = new Server;
$handler_instance->getHtml();
}
}
}