从坐标数组中读取数据在地图中实时打点,第一个点与第一个点相隔5秒钟

php
 $content = file_get_contents("http://web.cellpies.com/api/driving/getVehicleLocationPoints?vehicleDeviceId=0400000000030603&timeType=4&startTime=2017-03-17%2013:00:00&stopTime=2017-03-17%2014:00:00");
 $data = json_decode($content);
 for($i=0;$i<1;$i+=1){
     //echo '编号:'.$data->data[$i]->time.'
';
$gpsx=$data->data[$i]->gpsx; $gpsy=$data->data[$i]->gpsy; echo <<<_END 点标记
_END; } ?>

 

转载于:https://www.cnblogs.com/vactor/p/6678539.html

你可能感兴趣的:(从坐标数组中读取数据在地图中实时打点,第一个点与第一个点相隔5秒钟)