Skip to content
andy.rothwell edited this page Aug 26, 2019 · 4 revisions

Badge

Example:

{
  type: 'badge',
  slots: {
    title: 'Base District',
    titleBackground: '#58c04d',
    value: function(state) {
      return state.geocode.data.properties.zoning;
    },
    description: function(state) {
      var code = state.geocode.data.properties.zoning;
      return ZONING_CODE_MAP[code];
    },
  }
}
Clone this wiki locally