latLngオブジェクトからlat lngをとりだす。

ジオコーディングで帰ってきた座標
latLngオブジェクトなのでそのままでは取得できない。

results[0].geometry.location
中身は (35,145)とする

results[0].geometry.location.lat()
これで35が
results[0].geometry.location.lng()
これで145がとれる

results[0].geometry.location.waとかは
定期的に要素名が変わるので使っちゃダメ。