GeoIP + Route 53 latency based routing
by russau
HTML
<script src="http://lbr.twitterheatmap.com/region.js"></script>
JavaScript
$('body').append('Hi, your closest region is ' + region + '. ');
$.ajax( {
url: '//freegeoip.net/json/',
type: 'POST',
dataType: 'jsonp',
success: function(location) {
// example where I update content on the page.
$('body').append("I think you live in: " + location.city + " " + location.region_name + " " + location.country_name + ".");
}
} );