@redus/georedus-ui 0.8.9 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/dist/index.d.ts +2 -0
- package/dist/main.js +6400 -3896
- package/dist/viewSpecs/basemaps/dataviz/index.d.ts +53 -0
- package/dist/viewSpecs/basemaps/index.d.ts +2 -0
- package/dist/viewSpecs/basemaps/satellite/index.d.ts +53 -0
- package/dist/viewSpecs/basemaps/util/br_municipios/index.d.ts +39 -0
- package/dist/viewSpecs/basemaps/util/maptiler/index.d.ts +20 -0
- package/dist/viewSpecs/basemaps/util/maptiler/maptiler-dataviz-map-style.d.ts +2044 -0
- package/dist/viewSpecs/basemaps/util/maptiler/maptiler-satellite-map-style.d.ts +588 -0
- package/dist/viewSpecs/development/overture_places_poc.d.ts +32 -0
- package/dist/viewSpecs/presets/cem_censo/2010_2022/buildings/index.d.ts +65 -0
- package/dist/viewSpecs/presets/cem_censo/2010_2022/chartUtil.d.ts +26 -0
- package/dist/viewSpecs/presets/cem_censo/2010_2022/confSchema.d.ts +87 -0
- package/dist/viewSpecs/presets/cem_censo/2010_2022/customGeoJSON/index.d.ts +93 -0
- package/dist/viewSpecs/presets/cem_censo/2010_2022/dataUtil.d.ts +13 -0
- package/dist/viewSpecs/presets/cem_censo/2010_2022/download.d.ts +11 -0
- package/dist/viewSpecs/presets/{cem_censo_2010_2022 → cem_censo/2010_2022}/index.d.ts +5 -117
- package/dist/viewSpecs/presets/cem_censo/2010_2022/metadata.d.ts +67 -0
- package/dist/viewSpecs/presets/cem_censo/2010_2022/parseSchema.d.ts +13 -0
- package/dist/viewSpecs/presets/cem_censo/2010_2022/setor_censitario/index.d.ts +71 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/constants.d.ts +2 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/index.d.ts +31 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intrabr/index.d.ts +35 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intrabr/metadata.d.ts +12 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intrabr/municipio.d.ts +34 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/buildings.d.ts +51 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/customGeoJson.d.ts +104 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/index.d.ts +205 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/metadata/defaultMetadata.d.ts +11 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/metadata/index.d.ts +10 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/metadata/util.d.ts +1 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/setor_censitario.d.ts +112 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intrauf/index.d.ts +36 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intrauf/metadata.d.ts +12 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intrauf/municipio.d.ts +35 -0
- package/dist/viewSpecs/presets/cem_censo/2022/index.d.ts +130 -0
- package/dist/viewSpecs/presets/index.d.ts +2 -1
- package/dist/viewSpecs/resolveView/resolveView.d.ts +4 -4
- package/dist/viewSpecs/resolveView/tmp_resolveView.future.d.ts +1 -1
- package/dist/viewSpecs/zIndexes.d.ts +4 -0
- package/package.json +17 -12
- package/dist/DevControls/importViewSpecsFromCsv/index.d.ts +0 -6
- /package/dist/GeoReDUS/{useMapStyle.d.ts → _useMapStyle.d.ts} +0 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export function buildings_sources({ GLOBAL_CONTEXT, PARSED_SCHEMA }: {
|
|
2
|
+
GLOBAL_CONTEXT: any;
|
|
3
|
+
PARSED_SCHEMA: any;
|
|
4
|
+
}): {
|
|
5
|
+
"overture_br_buildings.geom": {
|
|
6
|
+
type: string;
|
|
7
|
+
attribution: any;
|
|
8
|
+
minzoom: number;
|
|
9
|
+
maxzoom: number;
|
|
10
|
+
tiles: {
|
|
11
|
+
[x: string]: any;
|
|
12
|
+
$$resolver: symbol;
|
|
13
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
14
|
+
dependencies: any;
|
|
15
|
+
value: (...args: any[]) => any;
|
|
16
|
+
defaultValue?: any;
|
|
17
|
+
context?: any;
|
|
18
|
+
}[];
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export function buildings_layers({ PARSED_SCHEMA }: {
|
|
22
|
+
PARSED_SCHEMA: any;
|
|
23
|
+
}): {
|
|
24
|
+
"overture_br_buildings.geom_fill": {
|
|
25
|
+
hidden: (string | (string | string[])[])[];
|
|
26
|
+
interactive: boolean;
|
|
27
|
+
source: string;
|
|
28
|
+
'source-layer': string;
|
|
29
|
+
type: string;
|
|
30
|
+
minzoom: number;
|
|
31
|
+
paint: {
|
|
32
|
+
'fill-color': (string | (string | (string | number | string[])[])[][])[] | (string | (string | (string | string[])[])[] | (string | (string | (string | number | string[])[])[][])[])[];
|
|
33
|
+
'fill-opacity': number;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
"overture_br_buildings.geom_fill_extrusion": {
|
|
37
|
+
hidden: (string | (string | string[])[])[];
|
|
38
|
+
interactive: boolean;
|
|
39
|
+
source: string;
|
|
40
|
+
'source-layer': string;
|
|
41
|
+
type: string;
|
|
42
|
+
minzoom: number;
|
|
43
|
+
paint: {
|
|
44
|
+
'fill-extrusion-color': (string | (string | (string | number | string[])[])[][])[] | (string | (string | (string | string[])[])[] | (string | (string | (string | number | string[])[])[][])[])[];
|
|
45
|
+
'fill-extrusion-opacity': number;
|
|
46
|
+
'fill-extrusion-height': (string | number | (string | number | string[])[])[];
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
export const BUILDINGS_MIN_ZOOM: 14;
|
|
51
|
+
export const BUILDINGS_3D_MIN_ZOOM: 16;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
export function customGeoJson_legends({ PARSED_SCHEMA }: {
|
|
2
|
+
PARSED_SCHEMA: any;
|
|
3
|
+
}): {
|
|
4
|
+
type: string;
|
|
5
|
+
title: (string | string[])[];
|
|
6
|
+
unit: (string | string[])[];
|
|
7
|
+
steps: (string | (string | (string | string[])[])[])[];
|
|
8
|
+
format: {
|
|
9
|
+
number: (string | (string | string[])[] | (string | {
|
|
10
|
+
style: string;
|
|
11
|
+
})[] | {}[])[];
|
|
12
|
+
below: string;
|
|
13
|
+
above: (string | (string | string[])[] | null)[];
|
|
14
|
+
};
|
|
15
|
+
__filterFeaturesForStep: (stepInfo: any, features: any) => any;
|
|
16
|
+
}[];
|
|
17
|
+
export function customGeoJSON_metadata(opts: any, context: any): Promise<{
|
|
18
|
+
labels: any;
|
|
19
|
+
measureUnits: any;
|
|
20
|
+
customGeoJSON: {
|
|
21
|
+
AREAS_FEATURES: any;
|
|
22
|
+
AREAS_GEOJSON: any;
|
|
23
|
+
};
|
|
24
|
+
variableValues: any;
|
|
25
|
+
colorScaleStops: any[];
|
|
26
|
+
} | {
|
|
27
|
+
labels?: undefined;
|
|
28
|
+
measureUnits?: undefined;
|
|
29
|
+
customGeoJSON?: undefined;
|
|
30
|
+
variableValues?: undefined;
|
|
31
|
+
colorScaleStops?: undefined;
|
|
32
|
+
}>;
|
|
33
|
+
export function customGeoJson_sources(opts: any): {
|
|
34
|
+
customGeoJSON_Areas: (string | {
|
|
35
|
+
[x: string]: any;
|
|
36
|
+
$$resolver: symbol;
|
|
37
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
38
|
+
dependencies: any;
|
|
39
|
+
value: (...args: any[]) => any;
|
|
40
|
+
defaultValue?: any;
|
|
41
|
+
context?: any;
|
|
42
|
+
} | (string | string[])[][] | null)[];
|
|
43
|
+
};
|
|
44
|
+
export function customGeoJson_layers(opts: any): {
|
|
45
|
+
customGeoJSON_Areas_fill: {
|
|
46
|
+
zIndex: number;
|
|
47
|
+
hidden: (string | string[])[];
|
|
48
|
+
source: string;
|
|
49
|
+
type: string;
|
|
50
|
+
legends: {
|
|
51
|
+
type: string;
|
|
52
|
+
title: (string | string[])[];
|
|
53
|
+
unit: (string | string[])[];
|
|
54
|
+
steps: (string | (string | (string | string[])[])[])[];
|
|
55
|
+
format: {
|
|
56
|
+
number: (string | (string | string[])[] | (string | {
|
|
57
|
+
style: string;
|
|
58
|
+
})[] | {}[])[];
|
|
59
|
+
below: string;
|
|
60
|
+
above: (string | (string | string[])[] | null)[];
|
|
61
|
+
};
|
|
62
|
+
__filterFeaturesForStep: (stepInfo: any, features: any) => any;
|
|
63
|
+
}[];
|
|
64
|
+
tooltip: {
|
|
65
|
+
title: (string | (string | (string | (string | (string | string[])[])[])[])[])[];
|
|
66
|
+
entries: (string | (string | string[] | {
|
|
67
|
+
number: (string | (string | string[])[] | (string | {
|
|
68
|
+
style: string;
|
|
69
|
+
})[] | {}[])[];
|
|
70
|
+
})[])[][][];
|
|
71
|
+
};
|
|
72
|
+
paint: {
|
|
73
|
+
'fill-color': {
|
|
74
|
+
[x: string]: any;
|
|
75
|
+
$$resolver: symbol;
|
|
76
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
77
|
+
dependencies: any;
|
|
78
|
+
value: (...args: any[]) => any;
|
|
79
|
+
defaultValue?: any;
|
|
80
|
+
context?: any;
|
|
81
|
+
};
|
|
82
|
+
'fill-opacity': string[];
|
|
83
|
+
'fill-outline-color': string;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
customGeoJSON_Areas_line: {
|
|
87
|
+
zIndex: number;
|
|
88
|
+
hidden: (string | string[])[];
|
|
89
|
+
source: string;
|
|
90
|
+
type: string;
|
|
91
|
+
paint: {
|
|
92
|
+
'line-color': {
|
|
93
|
+
[x: string]: any;
|
|
94
|
+
$$resolver: symbol;
|
|
95
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
96
|
+
dependencies: any;
|
|
97
|
+
value: (...args: any[]) => any;
|
|
98
|
+
defaultValue?: any;
|
|
99
|
+
context?: any;
|
|
100
|
+
};
|
|
101
|
+
'line-width': number;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
};
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
export namespace intramun {
|
|
2
|
+
export { metadata };
|
|
3
|
+
export function sources(opts: any): {
|
|
4
|
+
customGeoJSON_Areas: (string | {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
$$resolver: symbol;
|
|
7
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
8
|
+
dependencies: any;
|
|
9
|
+
value: (...args: any[]) => any;
|
|
10
|
+
defaultValue?: any;
|
|
11
|
+
context?: any;
|
|
12
|
+
} | (string | string[])[][] | null)[];
|
|
13
|
+
"overture_br_buildings.geom": {
|
|
14
|
+
type: string;
|
|
15
|
+
attribution: any;
|
|
16
|
+
minzoom: number;
|
|
17
|
+
maxzoom: number;
|
|
18
|
+
tiles: {
|
|
19
|
+
[x: string]: any;
|
|
20
|
+
$$resolver: symbol;
|
|
21
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
22
|
+
dependencies: any;
|
|
23
|
+
value: (...args: any[]) => any;
|
|
24
|
+
defaultValue?: any;
|
|
25
|
+
context?: any;
|
|
26
|
+
}[];
|
|
27
|
+
};
|
|
28
|
+
"ibge_malha_br_setor_censitario_2022.geom": {
|
|
29
|
+
type: string;
|
|
30
|
+
attribution: any;
|
|
31
|
+
minzoom: number;
|
|
32
|
+
maxzoom: number;
|
|
33
|
+
promoteId: string;
|
|
34
|
+
tiles: {
|
|
35
|
+
[x: string]: any;
|
|
36
|
+
$$resolver: symbol;
|
|
37
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
38
|
+
dependencies: any;
|
|
39
|
+
value: (...args: any[]) => any;
|
|
40
|
+
defaultValue?: any;
|
|
41
|
+
context?: any;
|
|
42
|
+
}[];
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
export function layers(opts: any): {
|
|
46
|
+
customGeoJSON_Areas_fill: {
|
|
47
|
+
zIndex: number;
|
|
48
|
+
hidden: (string | string[])[];
|
|
49
|
+
source: string;
|
|
50
|
+
type: string;
|
|
51
|
+
legends: {
|
|
52
|
+
type: string;
|
|
53
|
+
title: (string | string[])[];
|
|
54
|
+
unit: (string | string[])[];
|
|
55
|
+
steps: (string | (string | (string | string[])[])[])[];
|
|
56
|
+
format: {
|
|
57
|
+
number: (string | (string | string[])[] | (string | {
|
|
58
|
+
style: string;
|
|
59
|
+
})[] | {}[])[];
|
|
60
|
+
below: string;
|
|
61
|
+
above: (string | (string | string[])[] | null)[];
|
|
62
|
+
};
|
|
63
|
+
__filterFeaturesForStep: (stepInfo: any, features: any) => any;
|
|
64
|
+
}[];
|
|
65
|
+
tooltip: {
|
|
66
|
+
title: (string | (string | (string | (string | (string | string[])[])[])[])[])[];
|
|
67
|
+
entries: (string | (string | string[] | {
|
|
68
|
+
number: (string | (string | string[])[] | (string | {
|
|
69
|
+
style: string;
|
|
70
|
+
})[] | {}[])[];
|
|
71
|
+
})[])[][][];
|
|
72
|
+
};
|
|
73
|
+
paint: {
|
|
74
|
+
'fill-color': {
|
|
75
|
+
[x: string]: any;
|
|
76
|
+
$$resolver: symbol;
|
|
77
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
78
|
+
dependencies: any;
|
|
79
|
+
value: (...args: any[]) => any;
|
|
80
|
+
defaultValue?: any;
|
|
81
|
+
context?: any;
|
|
82
|
+
};
|
|
83
|
+
'fill-opacity': string[];
|
|
84
|
+
'fill-outline-color': string;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
customGeoJSON_Areas_line: {
|
|
88
|
+
zIndex: number;
|
|
89
|
+
hidden: (string | string[])[];
|
|
90
|
+
source: string;
|
|
91
|
+
type: string;
|
|
92
|
+
paint: {
|
|
93
|
+
'line-color': {
|
|
94
|
+
[x: string]: any;
|
|
95
|
+
$$resolver: symbol;
|
|
96
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
97
|
+
dependencies: any;
|
|
98
|
+
value: (...args: any[]) => any;
|
|
99
|
+
defaultValue?: any;
|
|
100
|
+
context?: any;
|
|
101
|
+
};
|
|
102
|
+
'line-width': number;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
"overture_br_buildings.geom_fill": {
|
|
106
|
+
hidden: (string | (string | string[])[])[];
|
|
107
|
+
interactive: boolean;
|
|
108
|
+
source: string;
|
|
109
|
+
'source-layer': string;
|
|
110
|
+
type: string;
|
|
111
|
+
minzoom: number;
|
|
112
|
+
paint: {
|
|
113
|
+
'fill-color': (string | (string | (string | number | string[])[])[][])[] | (string | (string | (string | string[])[])[] | (string | (string | (string | number | string[])[])[][])[])[];
|
|
114
|
+
'fill-opacity': number;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
"overture_br_buildings.geom_fill_extrusion": {
|
|
118
|
+
hidden: (string | (string | string[])[])[];
|
|
119
|
+
interactive: boolean;
|
|
120
|
+
source: string;
|
|
121
|
+
'source-layer': string;
|
|
122
|
+
type: string;
|
|
123
|
+
minzoom: number;
|
|
124
|
+
paint: {
|
|
125
|
+
'fill-extrusion-color': (string | (string | (string | number | string[])[])[][])[] | (string | (string | (string | string[])[])[] | (string | (string | (string | number | string[])[])[][])[])[];
|
|
126
|
+
'fill-extrusion-opacity': number;
|
|
127
|
+
'fill-extrusion-height': (string | number | (string | number | string[])[])[];
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
"ibge_malha_br_setor_censitario_2022.geom_fill": {
|
|
131
|
+
hidden: (string | (string | string[])[])[];
|
|
132
|
+
interactive: boolean;
|
|
133
|
+
source: string;
|
|
134
|
+
'source-layer': string;
|
|
135
|
+
type: string;
|
|
136
|
+
legends: {
|
|
137
|
+
type: string;
|
|
138
|
+
title: (string | string[])[];
|
|
139
|
+
unit: (string | string[])[];
|
|
140
|
+
steps: (string | (string | (string | string[])[])[])[];
|
|
141
|
+
format: {
|
|
142
|
+
number: (string | (string | string[])[] | (string | {
|
|
143
|
+
style: string;
|
|
144
|
+
})[] | {}[])[];
|
|
145
|
+
below: string;
|
|
146
|
+
above: (string | (string | string[])[] | null)[];
|
|
147
|
+
};
|
|
148
|
+
__filterFeaturesForStep: (stepInfo: any, features: any) => any;
|
|
149
|
+
}[];
|
|
150
|
+
tooltip: {
|
|
151
|
+
title: (string | (string | string[])[])[];
|
|
152
|
+
entries: ((string | (string | string[])[])[] | (string | (string | string[] | {
|
|
153
|
+
number: (string | (string | string[])[] | (string | {
|
|
154
|
+
style: string;
|
|
155
|
+
})[] | {}[])[];
|
|
156
|
+
})[])[][])[];
|
|
157
|
+
};
|
|
158
|
+
filter: {
|
|
159
|
+
[x: string]: any;
|
|
160
|
+
$$resolver: symbol;
|
|
161
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
162
|
+
dependencies: any;
|
|
163
|
+
value: (...args: any[]) => any;
|
|
164
|
+
defaultValue?: any;
|
|
165
|
+
context?: any;
|
|
166
|
+
};
|
|
167
|
+
paint: {
|
|
168
|
+
'fill-color': (string | (string | (string | number | string[])[])[][])[];
|
|
169
|
+
'fill-opacity': (string | number | (string | number | (string | boolean | string[])[])[])[];
|
|
170
|
+
'fill-outline-color': string;
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
"ibge_malha_br_setor_censitario_2022.geom_bounds": {
|
|
174
|
+
zIndex: number;
|
|
175
|
+
hidden: (string | (string | string[])[])[];
|
|
176
|
+
interactive: boolean;
|
|
177
|
+
type: string;
|
|
178
|
+
source: string;
|
|
179
|
+
'source-layer': string;
|
|
180
|
+
filter: {
|
|
181
|
+
[x: string]: any;
|
|
182
|
+
$$resolver: symbol;
|
|
183
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
184
|
+
dependencies: any;
|
|
185
|
+
value: (...args: any[]) => any;
|
|
186
|
+
defaultValue?: any;
|
|
187
|
+
context?: any;
|
|
188
|
+
};
|
|
189
|
+
paint: {
|
|
190
|
+
'line-color': {
|
|
191
|
+
[x: string]: any;
|
|
192
|
+
$$resolver: symbol;
|
|
193
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
194
|
+
dependencies: any;
|
|
195
|
+
value: (...args: any[]) => any;
|
|
196
|
+
defaultValue?: any;
|
|
197
|
+
context?: any;
|
|
198
|
+
};
|
|
199
|
+
'line-width': (string | number | (string | number | (string | boolean | string[])[])[])[];
|
|
200
|
+
'line-opacity': (string | number | (string | boolean | string[])[])[];
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
import { metadata } from './metadata';
|
package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/metadata/defaultMetadata.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export function defaultMetadata({ GLOBAL_CONTEXT, PARSED_SCHEMA }: {
|
|
2
|
+
GLOBAL_CONTEXT: any;
|
|
3
|
+
PARSED_SCHEMA: any;
|
|
4
|
+
}, context: any): Promise<{
|
|
5
|
+
labels: any;
|
|
6
|
+
measureUnits: any;
|
|
7
|
+
rawDataCacheUrl: string;
|
|
8
|
+
rawData: Record<string, any>[];
|
|
9
|
+
colorScheme: any;
|
|
10
|
+
colorScaleStops: any[];
|
|
11
|
+
}>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export function metadata(opts: any): {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
$$resolver: symbol;
|
|
4
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
5
|
+
dependencies: any;
|
|
6
|
+
value: (...args: any[]) => any;
|
|
7
|
+
defaultValue?: any;
|
|
8
|
+
context?: any;
|
|
9
|
+
};
|
|
10
|
+
export * from "./util";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function _censoColorScheme(colorSchemeName: any): any;
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
export function setor_censitario_legends({ PARSED_SCHEMA }: {
|
|
2
|
+
PARSED_SCHEMA: any;
|
|
3
|
+
}): {
|
|
4
|
+
type: string;
|
|
5
|
+
title: (string | string[])[];
|
|
6
|
+
unit: (string | string[])[];
|
|
7
|
+
steps: (string | (string | (string | string[])[])[])[];
|
|
8
|
+
format: {
|
|
9
|
+
number: (string | (string | string[])[] | (string | {
|
|
10
|
+
style: string;
|
|
11
|
+
})[] | {}[])[];
|
|
12
|
+
below: string;
|
|
13
|
+
above: (string | (string | string[])[] | null)[];
|
|
14
|
+
};
|
|
15
|
+
__filterFeaturesForStep: (stepInfo: any, features: any) => any;
|
|
16
|
+
}[];
|
|
17
|
+
export function setor_censitario_sources({ GLOBAL_CONTEXT, PARSED_SCHEMA }: {
|
|
18
|
+
GLOBAL_CONTEXT: any;
|
|
19
|
+
PARSED_SCHEMA: any;
|
|
20
|
+
}): {
|
|
21
|
+
"ibge_malha_br_setor_censitario_2022.geom": {
|
|
22
|
+
type: string;
|
|
23
|
+
attribution: any;
|
|
24
|
+
minzoom: number;
|
|
25
|
+
maxzoom: number;
|
|
26
|
+
promoteId: string;
|
|
27
|
+
tiles: {
|
|
28
|
+
[x: string]: any;
|
|
29
|
+
$$resolver: symbol;
|
|
30
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
31
|
+
dependencies: any;
|
|
32
|
+
value: (...args: any[]) => any;
|
|
33
|
+
defaultValue?: any;
|
|
34
|
+
context?: any;
|
|
35
|
+
}[];
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export function setor_censitario_layers(opts: any): {
|
|
39
|
+
"ibge_malha_br_setor_censitario_2022.geom_fill": {
|
|
40
|
+
hidden: (string | (string | string[])[])[];
|
|
41
|
+
interactive: boolean;
|
|
42
|
+
source: string;
|
|
43
|
+
'source-layer': string;
|
|
44
|
+
type: string;
|
|
45
|
+
legends: {
|
|
46
|
+
type: string;
|
|
47
|
+
title: (string | string[])[];
|
|
48
|
+
unit: (string | string[])[];
|
|
49
|
+
steps: (string | (string | (string | string[])[])[])[];
|
|
50
|
+
format: {
|
|
51
|
+
number: (string | (string | string[])[] | (string | {
|
|
52
|
+
style: string;
|
|
53
|
+
})[] | {}[])[];
|
|
54
|
+
below: string;
|
|
55
|
+
above: (string | (string | string[])[] | null)[];
|
|
56
|
+
};
|
|
57
|
+
__filterFeaturesForStep: (stepInfo: any, features: any) => any;
|
|
58
|
+
}[];
|
|
59
|
+
tooltip: {
|
|
60
|
+
title: (string | (string | string[])[])[];
|
|
61
|
+
entries: ((string | (string | string[])[])[] | (string | (string | string[] | {
|
|
62
|
+
number: (string | (string | string[])[] | (string | {
|
|
63
|
+
style: string;
|
|
64
|
+
})[] | {}[])[];
|
|
65
|
+
})[])[][])[];
|
|
66
|
+
};
|
|
67
|
+
filter: {
|
|
68
|
+
[x: string]: any;
|
|
69
|
+
$$resolver: symbol;
|
|
70
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
71
|
+
dependencies: any;
|
|
72
|
+
value: (...args: any[]) => any;
|
|
73
|
+
defaultValue?: any;
|
|
74
|
+
context?: any;
|
|
75
|
+
};
|
|
76
|
+
paint: {
|
|
77
|
+
'fill-color': (string | (string | (string | number | string[])[])[][])[];
|
|
78
|
+
'fill-opacity': (string | number | (string | number | (string | boolean | string[])[])[])[];
|
|
79
|
+
'fill-outline-color': string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
"ibge_malha_br_setor_censitario_2022.geom_bounds": {
|
|
83
|
+
zIndex: number;
|
|
84
|
+
hidden: (string | (string | string[])[])[];
|
|
85
|
+
interactive: boolean;
|
|
86
|
+
type: string;
|
|
87
|
+
source: string;
|
|
88
|
+
'source-layer': string;
|
|
89
|
+
filter: {
|
|
90
|
+
[x: string]: any;
|
|
91
|
+
$$resolver: symbol;
|
|
92
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
93
|
+
dependencies: any;
|
|
94
|
+
value: (...args: any[]) => any;
|
|
95
|
+
defaultValue?: any;
|
|
96
|
+
context?: any;
|
|
97
|
+
};
|
|
98
|
+
paint: {
|
|
99
|
+
'line-color': {
|
|
100
|
+
[x: string]: any;
|
|
101
|
+
$$resolver: symbol;
|
|
102
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
103
|
+
dependencies: any;
|
|
104
|
+
value: (...args: any[]) => any;
|
|
105
|
+
defaultValue?: any;
|
|
106
|
+
context?: any;
|
|
107
|
+
};
|
|
108
|
+
'line-width': (string | number | (string | number | (string | boolean | string[])[])[])[];
|
|
109
|
+
'line-opacity': (string | number | (string | boolean | string[])[])[];
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export namespace intrauf {
|
|
2
|
+
export { metadata };
|
|
3
|
+
export function sources(opts: any): {
|
|
4
|
+
"ibge_malha_br_municipio_2024.geom": {
|
|
5
|
+
type: string;
|
|
6
|
+
attribution: any;
|
|
7
|
+
bounds: string[];
|
|
8
|
+
promoteId: string;
|
|
9
|
+
tiles: {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
$$resolver: symbol;
|
|
12
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
13
|
+
dependencies: any;
|
|
14
|
+
value: (...args: any[]) => any;
|
|
15
|
+
defaultValue?: any;
|
|
16
|
+
context?: any;
|
|
17
|
+
}[];
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export function layers(opts: any): {
|
|
21
|
+
"ibge_malha_br_municipio_2024.geom_fill": {
|
|
22
|
+
hidden: (string | (string | string[])[])[];
|
|
23
|
+
interactive: boolean;
|
|
24
|
+
source: string;
|
|
25
|
+
'source-layer': string;
|
|
26
|
+
type: string;
|
|
27
|
+
filter: (string | (string | string[])[])[];
|
|
28
|
+
paint: {
|
|
29
|
+
'fill-color': (string | (string | (string | number | (string | string[])[])[])[][])[];
|
|
30
|
+
'fill-opacity': (string | number | (string | boolean | string[])[])[];
|
|
31
|
+
'fill-outline-color': string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
import { metadata } from './metadata';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export function metadata({ GLOBAL_CONTEXT, PARSED_SCHEMA }: {
|
|
2
|
+
GLOBAL_CONTEXT: any;
|
|
3
|
+
PARSED_SCHEMA: any;
|
|
4
|
+
}): {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
$$resolver: symbol;
|
|
7
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
8
|
+
dependencies: any;
|
|
9
|
+
value: (...args: any[]) => any;
|
|
10
|
+
defaultValue?: any;
|
|
11
|
+
context?: any;
|
|
12
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export function municipio_sources({ GLOBAL_CONTEXT, PARSED_SCHEMA }: {
|
|
2
|
+
GLOBAL_CONTEXT: any;
|
|
3
|
+
PARSED_SCHEMA: any;
|
|
4
|
+
}): {
|
|
5
|
+
"ibge_malha_br_municipio_2024.geom": {
|
|
6
|
+
type: string;
|
|
7
|
+
attribution: any;
|
|
8
|
+
bounds: string[];
|
|
9
|
+
promoteId: string;
|
|
10
|
+
tiles: {
|
|
11
|
+
[x: string]: any;
|
|
12
|
+
$$resolver: symbol;
|
|
13
|
+
$$unresolved?: Record<string | number, import("@orioro/resolve").ResolutionNode> | undefined;
|
|
14
|
+
dependencies: any;
|
|
15
|
+
value: (...args: any[]) => any;
|
|
16
|
+
defaultValue?: any;
|
|
17
|
+
context?: any;
|
|
18
|
+
}[];
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export function municipio_layers(): {
|
|
22
|
+
"ibge_malha_br_municipio_2024.geom_fill": {
|
|
23
|
+
hidden: (string | (string | string[])[])[];
|
|
24
|
+
interactive: boolean;
|
|
25
|
+
source: string;
|
|
26
|
+
'source-layer': string;
|
|
27
|
+
type: string;
|
|
28
|
+
filter: (string | (string | string[])[])[];
|
|
29
|
+
paint: {
|
|
30
|
+
'fill-color': (string | (string | (string | number | (string | string[])[])[])[][])[];
|
|
31
|
+
'fill-opacity': (string | number | (string | boolean | string[])[])[];
|
|
32
|
+
'fill-outline-color': string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|