Skip to content

Instantly share code, notes, and snippets.

@acrymble
Created October 13, 2012 10:27
Show Gist options
  • Save acrymble/3884081 to your computer and use it in GitHub Desktop.
Save acrymble/3884081 to your computer and use it in GitHub Desktop.
javascript kml
var tm; function getThemeFromData(thisItem) { var category = thisItem.options.category; lookupTable = { "Booksellers' Protection Society": "blue", Lloyd: "red", "London Union of Vendors of Useful Knowledge, Male and Female": "green", "Pierce Egan": "orange" }; if (lookupTable.hasOwnProperty(category)) { return lookupTable[category]; } else { return "purple"; } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment