类型:手机软件
版本:v2025
大小:未知
更新:2025-04-15
语言:简体中文
等级:
厂商:
POST in the HTTP protocol on the server where you have set the GPS information of the terminalIt is also possible to save the GPX format xml file also.I find it useful to save directly to the like Dropbox.switching satellite photo [menu] button[Format to POST]add=addresslat=Latitudelon=Longitudetime=GMT timeele=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."");fclose($fp);echo $xml?>