私のプログラマーはlocation
、このjson配列からデータ(緯度と経度)を取得するのに問題があります。foreach
の緯度/経度を見つけてlocation:
それらをエコーするループは何でしょうか?ありがとう
$jsonArray = json_decode($jsondata, true);
$jsondata = {
"results" : [
{
"address_components" : [
{
"long_name" : "2340",
"short_name" : "2340",
"types" : [ "postal_code" ]
},
{
"long_name" : "New South Wales",
"short_name" : "NSW",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "Australia",
"short_name" : "AU",
"types" : [ "country", "political" ]
}
],
"formatted_address" : "New South Wales 2340, Australia",
"geometry" : {
"bounds" : {
"northeast" : {
"lat" : -30.79897870,
"lng" : 151.394080
},
"southwest" : {
"lat" : -31.661670,
"lng" : 150.334880
}
},
"location" : {
"lat" : -31.28146910,
"lng" : 151.04713550
},
"location_type" : "APPROXIMATE",
"viewport" : {
"northeast" : {
"lat" : -30.79897870,
"lng" : 151.394080
},
"southwest" : {
"lat" : -31.661670,
"lng" : 150.334880
}
}
},
"types" : [ "postal_code" ]
}
],
"status" : "OK"
};