gpt4 book ai didi

php - Google map - 将地址转换为纬度和经度 - PHP 后端?

转载 作者:行者123 更新时间:2023-12-02 06:14:07 26 4
gpt4 key购买 nike

是否可以转换(在 PHP 后端):

<?php
$Address = "Street 1, City, Country"; // just normal address
?>

<?php
$LatLng = "10.0,20.0"; // latitude & lonitude
?>

我当前使用的代码是默认代码:

<script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?v=3.exp&#038;sensor=false'></script>

<script>

function initialize() {
var myLatlng = new google.maps.LatLng(10.0,20.0);
var mapOptions = {
zoom: 16,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById('map'), mapOptions);

var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'This is a caption'
});
}

google.maps.event.addDomListener(window, 'load', initialize);

</script>

<div id="map"></div>

我一直在阅读https://developers.google.com/maps/documentation/geocoding已经有一段时间了,但我想我的经验还不够。

谢谢。

最佳答案

这对我有用:

<?php
$Address = urlencode($Address);
$request_url = "http://maps.googleapis.com/maps/api/geocode/xml?address=".$Address."&sensor=true";
$xml = simplexml_load_file($request_url) or die("url not loading");
$status = $xml->status;
if ($status=="OK") {
$Lat = $xml->result->geometry->location->lat;
$Lon = $xml->result->geometry->location->lng;
$LatLng = "$Lat,$Lon";
}
?>

引用文献:

关于php - Google map - 将地址转换为纬度和经度 - PHP 后端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18595830/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com