Skip to content

Instantly share code, notes, and snippets.

@pdbartsch
Created April 24, 2012 18:15
Show Gist options
  • Save pdbartsch/2482241 to your computer and use it in GitHub Desktop.
Save pdbartsch/2482241 to your computer and use it in GitHub Desktop.
TileMill Icons based on type field and zoom level
#activitiesgeojson {
[zoom >= 0][zoom <=10] {
[type = "bike"] {point-file: url(icons/mountainbiking-2.png); }
[type = "hike"] {point-file: url(icons/hiking-2.png); }
}
[zoom = 11] {
[type = "bike"] {point-file: url(icons/mountainbiking-1.png); }
[type = "hike"] {point-file: url(icons/hiking-1.png); }
}
[zoom > 11][zoom <=14] {
[type = "bike"] {point-file: url(icons/mountainbiking-3.png); }
[type = "hike"] {point-file: url(icons/hiking-3.png); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment