0

How could I possibly get a list of all areas, cities,states, countries in the world like Zomato has. Is there any Gem that can help me. I have searched for few GEMS (django-cities, WorldCityLocations) which gives only till cities and not the area.

For example : I want something like Apollo Bunder(area), Mumbai(City), Maharashtra(State), India (country) and also if possible its lattitude and logitude 's.

Vicky
  • 151
  • 1
  • 10
  • Why don't you integrate [Google Places API](https://developers.google.com/places/)? you can use [google-api-ruby-client gem](https://github.com/google/google-api-ruby-client) – Gagan Gami Dec 11 '15 at 07:10

1 Answers1

0

The Carmen Gem will give you Countries and Regions.

For more detail (e.g. Cities and latitude-longitude) you will need to integrate with something dynamic like Google Places. You might take a look at this Google Places wrapper gem.

rlarcombe
  • 2,958
  • 1
  • 17
  • 22