Skip to content

Instantly share code, notes, and snippets.

@ashaw
Created September 1, 2012 17:28
Show Gist options
  • Save ashaw/3581013 to your computer and use it in GitHub Desktop.
Save ashaw/3581013 to your computer and use it in GitHub Desktop.
var lookup = {
"2001_v1" : 188914,
"2001_v2" : 193305
}
$(function() {
$("#censo, #vars").change(function() {
var year = $("#censo option:selected").val();
var version = $("#vars option:selected").val();
var map_id = lookup[year + "_" + version];
console.log(map_id);
$("#map").html('<iframe id="geocommonsmap" src="http://geocommons.com/maps/' + map_id + '/embed" width="100%" height="300"></iframe></div>');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment