@redus/georedus-ui 0.10.0 → 0.11.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 +12 -0
- package/dist/DocumentIframe/index.d.ts +3 -0
- package/dist/GeoReDUS/GeoReDUS.d.ts +1 -0
- package/dist/GeoReDUS/util.d.ts +17 -0
- package/dist/main.js +465 -212
- package/dist/viewSpecs/basemaps/dataviz/index.d.ts +9 -8
- package/dist/viewSpecs/basemaps/satellite/index.d.ts +9 -8
- package/dist/viewSpecs/development/ana_br_bacias_hidrograficas.d.ts +1 -0
- package/dist/viewSpecs/development/curvatura.d.ts +26 -1
- package/dist/viewSpecs/development/declividade.d.ts +17 -18
- package/dist/viewSpecs/development/hand.d.ts +3 -0
- package/dist/viewSpecs/development/redus_mutirao_cop_2025.d.ts +6 -3
- package/dist/viewSpecs/development/temperatura_superficie.d.ts +3 -0
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/index.d.ts +18 -5
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/metadata/defaultMetadata.d.ts +1 -1
- package/dist/viewSpecs/presets/cem_censo/2022/choropleth/intramun/setor_censitario.d.ts +18 -5
- package/package.json +3 -1
- package/dist/GeoReDUS/_useMapStyle.d.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @orioro/template-react
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- implement detailed legends for climate datasets
|
|
8
|
+
|
|
9
|
+
## 0.10.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fix missing react global import at redus_mutirao_cop_2025.jsx
|
|
14
|
+
|
|
3
15
|
## 0.10.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/GeoReDUS/util.d.ts
CHANGED
|
@@ -4,3 +4,20 @@ export function resolveInitialMunicipioId({ METADATA_API_ENDPOINT, coordinates,
|
|
|
4
4
|
coordinates: any;
|
|
5
5
|
defaultCoordinates: any;
|
|
6
6
|
}): Promise<any>;
|
|
7
|
+
/**
|
|
8
|
+
* Returns a bbox covering the 3×3 grid of tiles around the tile that contains
|
|
9
|
+
* (lng, lat) at the given zoom. Useful for limiting map bounds or prefetching.
|
|
10
|
+
*
|
|
11
|
+
* TILE LAYOUT (center tile is x,y):
|
|
12
|
+
*
|
|
13
|
+
* +---------+---------+---------+
|
|
14
|
+
* | x-1,y-1 | x,y-1 | x+1,y-1 |
|
|
15
|
+
* +---------+---------+---------+
|
|
16
|
+
* | x-1,y | x,y | x+1,y |
|
|
17
|
+
* +---------+---------+---------+
|
|
18
|
+
* | x-1,y+1 | x,y+1 | x+1,y+1 |
|
|
19
|
+
* +---------+---------+---------+
|
|
20
|
+
*
|
|
21
|
+
* Returns: [minLng, minLat, maxLng, maxLat]
|
|
22
|
+
*/
|
|
23
|
+
export function getSurroundingTilesBbox(lng: any, lat: any, zoom: any): number[];
|