OsmAnd/config/site/go.php

8 lines
194 B
PHP
Raw Normal View History

2011-04-29 16:53:38 +02:00
<?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);
?>