Initial commit

This commit is contained in:
zhongjin
2020-06-15 10:58:47 +08:00
commit 4f1dfe7564
8590 changed files with 1516878 additions and 0 deletions
@@ -0,0 +1,7 @@
module.exports = {
Mode: {
NESTED: 'nested',
FLOAT: 'float',
DEFAULT: 'nested'
}
};
@@ -0,0 +1,68 @@
module.exports = {
Size: {
MARKER_MIN: 7,
IMAGE_MIN: 20,
DEFAULT: {
min: 1,
max: 45,
step: 0.5
},
DefaultInput100: {
MIN: 0,
MAX: 100,
STEP: 1
},
DEFAULT_RANGE: [ 5, 20 ]
},
Panes: {
FIXED: 'fixed',
BY_VALUE: 'value',
FILE: 'file'
},
Tabs: {
BINS: 'bins',
QUANTIFICATION: 'quantification'
},
Quantification: {
REFERENCE: {
'Jenks': 'jenks',
'Equal Interval': 'equal',
'Heads/Tails': 'headtails',
'Quantile': 'quantiles'
}
},
Settings: {
COLOR: {
quantifications: {
items: ['jenks', 'equal', 'headtails', 'quantiles', 'category'],
defaultIndex: 0
}
},
COLOR_RAMPS: {
quantifications: {
items: ['quantiles', 'jenks', 'equal', 'headtails', 'category'],
defaultIndex: 0
},
bins: {
items: ['2', '3', '4', '5', '6', '7'],
defaultIndex: 3
}
},
NUMBER: {
quantifications: {
items: ['quantiles', 'jenks', 'equal', 'headtails'],
defaultIndex: 0
},
bins: {
items: ['2', '3', '4', '5', '6', '7'],
defaultIndex: 3
}
}
}
};
@@ -0,0 +1,32 @@
module.exports = {
Type: {
SIMPLE: 'simple',
ANIMATION: 'animation',
HEATMAP: 'heatmap',
POLYGON: 'polygon',
REGIONS: 'regions',
HEXABINS: 'hexabins',
SQUARES: 'squares',
NONE: 'none'
},
Blending: {
SIMPLE: [
'none',
'multiply',
'screen',
'overlay',
'darken',
'lighten',
'color-dodge',
'color-burn',
'xor',
'src-over'
],
ANIMATION: [
'lighter',
'multiply',
'source-over',
'xor'
]
}
};