链街Dcat后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
345 B

  1. <?php
  2. namespace App\Admin\Common;
  3. class Map
  4. {
  5. public static function routeInfo($m_lat,$m_lng,$u_lat,$u_lng,$type="bicycling")
  6. {
  7. $result = file_get_contents("https://apis.map.qq.com/ws/direction/v1/{$type}/?from={$m_lat},{$m_lng}&to={$u_lat},{$u_lng}&key=7NSBZ-ETU3O-CW6WN-S3YM5-KERR5-RQBHS");
  8. return $result;
  9. }
  10. }