LoginSignup
3
2

More than 3 years have passed since last update.

ω分で作る無料のジオコーディングAPI with Google Apps Script

Posted at

小ネタです。

3 分で作る無料の翻訳 API with Google Apps Scriptという記事をみて、

Google翻訳のAPIが作れるのなら、ジオコーディングのAPIも作れるのでは?
と思って適当にちょこっと改変してみたらできました。どうぞ。

function doGet(e){
  var p = e.parameter;
  var response = Maps.newGeocoder().geocode(p.location);
  var result = response.results[0];
  return ContentService.createTextOutput(result.geometry.location.lat + " " + result.geometry.location.lng);
}

参考文献

3 分で作る無料の翻訳 API with Google Apps Script

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2