附近宾馆查询100米内最近如家
status === 'OK') {$latitude = $geocode_data->results[0]->geometry->location->lat;$longitude = $geocode_data->results[0]->geometry->location->lng;// 使用 Google Places API 查找附近的如家宾馆$places = file_get_contents('https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=' . $latitude . ',' . $longitude . '&radius=100&type=lodging&keyword=rujia&key=YOUR_GOOGLE_MAPS_API_KEY');$places_data = json_decode($places);if ($places_data->status === 'OK') {echo '
-
';foreach ($places_data->results as $place) {echo '
-
' . $place->name . '
' . $place->vicinity . '
';}echo '
找不到附近的如家宾馆。
';}} else {echo '地址无效。
';}}?> 郑重声明:部分文章来源于网络,仅作为参考,如果网站中图片和文字侵犯了您的版权,请联系我们处理!
相关推荐