3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

rubyのgeocoderの使い方

Posted at

gemでインストール

gem install geocoder

IPや住所から詳細情報取得

require 'geocoder'
require 'pp'
Geocoder.configure(:language  => :ja,  :units => :km )

pp Geocoder.address("東京タワー")
pp Geocoder.search("東京タワー")
pp Geocoder.search("210.194.198.60")
pp Geocoder.address("210.194.198.60")
pp Geocoder.search("106.187.50.98")
pp Geocoder.address("106.187.50.98")

3
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?