Class: default
Extends
BaseObject
Constructors
new default()
new default(
chartOptions?,
options?,
map?): default
Parameters
Parameter | Type |
---|---|
chartOptions ? | NoDef <Nullable <object >> |
options ? | NoDef <Nullable <OptionsTypes >> |
map ? | any |
Returns
Overrides
obj.constructor
Defined in
Properties
formatGeoJSON()
static formatGeoJSON: (json) => object;
decode geoJson
Parameters
Parameter | Type | Description |
---|---|---|
json | any |
Returns
object
type
type: string = 'FeatureCollection';
crs
crs: object = {};
features
features: any = _features;
Defined in
bind()
static bind: (func, context, ...args) => Function;
For a given function, creates a bound function that has the same body as the original function. The this object of the bound function is associated with the specified object, and has the specified initial parameters.
bind context
Parameters
Parameter | Type | Description |
---|---|---|
func | Function | |
context | any | |
...args | any [] |
Returns
Function