POST in the HTTP protocol on the server
where you have set the GPS information of the terminal
It is also possible to save the GPX format xml file also.
switching satellite photo [menu] button
[Format to POST]
add=address
lat=Latitude
lon=Longitude
time=GMT time
ele=Elevation
[Server side program sample]
<?php
$add = $_POST["add"];
$lat = $_POST["lat"];
$lon = $_POST["lon"];
$time = $_POST["time"];
$ele = $_POST["ele"];
$xml = "<trkpt lat='".$lat."' lon='".$lon."'><time>".$time."</time><ele>".$ele."</ele></trkpt>";
$fp = fopen("/tmp/gpx.log", "a");
fwrite($fp, $xml."\n");
fclose($fp);
echo $xml
?>
where you have set the GPS information of the terminal
It is also possible to save the GPX format xml file also.
switching satellite photo [menu] button
[Format to POST]
add=address
lat=Latitude
lon=Longitude
time=GMT time
ele=Elevation
[Server side program sample]
<?php
$add = $_POST["add"];
$lat = $_POST["lat"];
$lon = $_POST["lon"];
$time = $_POST["time"];
$ele = $_POST["ele"];
$xml = "<trkpt lat='".$lat."' lon='".$lon."'><time>".$time."</time><ele>".$ele."</ele></trkpt>";
$fp = fopen("/tmp/gpx.log", "a");
fwrite($fp, $xml."\n");
fclose($fp);
echo $xml
?>
Read more
Collapse
What's New
Program optimization
Read more
Collapse
Additional Information
Updated
November 26, 2014
Size
1.5M
Installs
500+
Current Version
0.0.6
Requires Android
2.3 and up
Content Rating
Everyone
Permissions
Report
Offered By
JOJOAGOGOGO