/**
 * All supported map types
 */
export type MapType =
    | 'choropleth'
    | 'ch'
    | 'proportionalSymbol'
    | 'proportionalSymbols'
    | 'ps'
    | 'categorical'
    | 'ct'
    | 'bivariateChoropleth'
    | 'chbi'
    | 'trivariateChoropleth'
    | 'ternary'
    | 'chtri'
    | 'stripeComposition'
    | 'scomp'
    | 'stripe'
    | 'pieChart'
    | 'pie'
    | 'sparkline'
    | 'spark'
    | 'sparklines'
    | 'flow'
    | 'flowmap'
    | 'coxcomb'
    | 'polar'
    | 'alpha'
    | 'valueByAlpha'
    | 'mushroom'
    | 'waffle'
    | 'bar'
    | 'barComposition'
