OsmAnd/config/site/go.php
2011-04-29 16:57:49 +02:00

8 lines
No EOL
194 B
PHP
Executable file

<?php
$zoom = 15;
$lat = $_GET['lat'];
$lon = $_GET['lon'];
$zoom = $_GET['z'];
header('HTTP/1.1 302 Found');
header('Location: http://maps.google.com/maps?q=loc:'.$lat.','.$lon.'&z='.$zoom);
?>