Created
October 13, 2012 10:27
-
-
Save acrymble/3884081 to your computer and use it in GitHub Desktop.
javascript kml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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