0

これを変える機能はありますか?

1600 Amphitheatre Parkway, Mountain View, CA":

これに:

1600+Amphitheatre+Parkway,+Mountain+View,+CA

ジオロケーションを使用してGoogleマップを作成します。

4

1 に答える 1

1

「1600AmphitheatreParkway、Mountain View、CA」を直接通過できます。次の機能を使用します。

 public function GetGeoLocation($address)
        {
        // fetching lat&lng from Google Maps
        $request_uri = 'http://maps.googleapis.com/maps/api/geocode/xml?address='.urlencode($address).'&sensor=true';
        $google_xml = simplexml_load_file($request_uri);
        $lat = (string)$google_xml->result->geometry->location->lat;
        // fetching time from earth tools
        $lng = (string)$google_xml->result->geometry->location->lng;
        return array('lat' => $lat,'lng' => $lng)
        }

配列内のアドレスのgeoLocationを返します

于 2012-07-25T07:17:07.820 に答える