Skip to content

Instantly share code, notes, and snippets.

@deszip
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deszip/a504c3c90213d519a87a to your computer and use it in GitHub Desktop.
Save deszip/a504c3c90213d519a87a to your computer and use it in GitHub Desktop.
switch (poiModel.visited, poiModel.type) {
case (true, Poi.Type.Star) : annotationView.type = LMPoiAnnotationView.IconType.VisitedSpecial
case (true, _) : annotationView.type = LMPoiAnnotationView.IconType.Visited
case (false, Poi.Type.Star) : annotationView.type = LMPoiAnnotationView.IconType.MissedSpecial
case (false, _) : annotationView.type = LMPoiAnnotationView.IconType.Missed
default : ()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment