これを変える機能はありますか?
1600 Amphitheatre Parkway, Mountain View, CA":
これに:
1600+Amphitheatre+Parkway,+Mountain+View,+CA
ジオロケーションを使用してGoogleマップを作成します。
これを変える機能はありますか?
1600 Amphitheatre Parkway, Mountain View, CA":
これに:
1600+Amphitheatre+Parkway,+Mountain+View,+CA
ジオロケーションを使用してGoogleマップを作成します。
「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を返します