While working with the geocoder gem I have found some condition based codes like:
def geocoder_lookup
if country_code == "RU"
:yandex
elsif country_code == "CN"
:baidu
else
:google
end
end
All I want is to store latitude/longitude and country code. If I do that, does it consume my API quota? If it does, does it consume extra quota for reverse geocoding?