2

経度と緯度を取得するためにこのコードを作成してください:

$addresss = "France+mande-lieu-la-napol";
$region   = "Alpes-Maritimes";
$urll      = "http://maps.google.com/maps/api/geocode/json?address=$addresss&sensor=false&region=$region";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $urll);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
$response_a = json_decode($response);

var_dump ($response_a->results[0]->geometry->location->lat );

var_dump ( $response_a->results[0]->geometry->location->lng );

このコードは結果として私に与えます:

float(43.546232) float(6.938309)

しかし、実際にはそれは私に与えなければなりません

float(43.546232) float(6.938309000000004) 

完全な経度を取得するにはどうすればよいですか?

4

1 に答える 1

1

You should use json_decode($json, true, 512, JSON_BIGINT_AS_STRING) so that the lat and long will be returned as strings instead of floats.

于 2012-12-05T18:53:04.680 に答える