Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
},
{
key: 'borderColor',
help: 'Method to compute border color.',
type: 'string | object | Function',
required: false,
defaultValue: GeoMapDefaultProps.borderColor,
controlType: 'inheritedColor',
group: 'Style',
},
{
key: 'enableGraticule',
help: 'Enable meridians and parallels, useful for showing projection distortion.',
type: 'boolean',
required: false,
defaultValue: GeoMapDefaultProps.enableGraticule,
controlType: 'switch',
group: 'Graticule',
},
{
key: 'graticuleLineWidth',
help: 'Control meridians and parallel lines width.',
type: 'number',
required: false,
defaultValue: GeoMapDefaultProps.graticuleLineWidth,
controlType: 'lineWidth',
group: 'Graticule',
controlOptions: {
step: 0.5,
},
},
{
type: '{string|Function}',
required: false,
default: GeoMapDefaultProps.borderColor,
controlType: 'color',
controlGroup: 'Style',
controlOptions: {
withCustomColor: true,
},
},
{
key: 'enableGraticule',
scopes: '*',
description: 'Enable meridians and parallels, useful for showing projection distortion.',
type: '{boolean}',
required: false,
default: GeoMapDefaultProps.enableGraticule,
controlType: 'switch',
controlGroup: 'Graticule',
},
{
key: 'graticuleLineWidth',
scopes: '*',
description: 'Control meridians and parallel lines width.',
type: '{number}',
required: false,
default: GeoMapDefaultProps.graticuleLineWidth,
controlType: 'range',
controlGroup: 'Graticule',
controlOptions: {
unit: 'px',
min: 0,
max: 10,