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
14 lines
345 B
<?php
|
|
|
|
|
|
namespace App\Admin\Common;
|
|
|
|
|
|
class Map
|
|
{
|
|
public static function routeInfo($m_lat,$m_lng,$u_lat,$u_lng,$type="bicycling")
|
|
{
|
|
$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");
|
|
return $result;
|
|
}
|
|
}
|