Ip to country, city, lat, lang javascript service

geolocation, javascript, jquery, json, web-services

Solution

As it goes I was researching this the other day.

Couple of potential options:

FreeGeoIP

IP Info DB

Maxmind do a number of APIs but their JS service doesn't look up to task to my mind.

Problem

What the best/accurate/free service to convert the IP from the following script to country/city/lat/long? ``` $.getJSON("http://jsonip.appspot.com?callback=?", function(data){ alert( "Data Returned: " + data.ip); }); ```

Original source