@mapbox/mapbox-gl-style-spec 13.23.1-beta.1 → 13.24.0-alpha.3
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 +1 -1
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +4 -1
- package/dist/index.es.js.map +1 -1
- package/expression/evaluation_context.js +1 -1
- package/expression/index.js +3 -3
- package/feature_filter/convert.js +1 -1
- package/flow-typed/gl-matrix.js +102 -0
- package/flow-typed/grid-index.js +13 -0
- package/flow-typed/pbf.js +2 -1
- package/flow-typed/point-geometry.js +4 -2
- package/flow-typed/potpack.js +1 -0
- package/flow-typed/tiny-sdf.js +31 -0
- package/flow-typed/vector-tile.js +1 -0
- package/package.json +1 -1
- package/reference/v8.json +4 -1
- package/style-spec.js +6 -0
- package/types.js +1 -1
package/dist/index.es.js
CHANGED
|
@@ -95,7 +95,7 @@ var $root = {
|
|
|
95
95
|
},
|
|
96
96
|
projection: {
|
|
97
97
|
type: "projection",
|
|
98
|
-
doc: "The projection the map should be rendered in. Supported projections are Albers, Equal Earth, Equirectangular (WGS84), Lambert conformal conic, Mercator, Natural Earth, and Winkel Tripel. Terrain, fog, sky and CustomLayerInterface are not supported for projections other than mercator.",
|
|
98
|
+
doc: "The projection the map should be rendered in. Supported projections are Albers, Equal Earth, Equirectangular (WGS84), Lambert conformal conic, Mercator, Natural Earth, Globe, and Winkel Tripel. Terrain, fog, sky and CustomLayerInterface are not supported for projections other than mercator.",
|
|
99
99
|
example: {
|
|
100
100
|
name: "albers",
|
|
101
101
|
center: [
|
|
@@ -3916,6 +3916,9 @@ var projection = {
|
|
|
3916
3916
|
},
|
|
3917
3917
|
winkelTripel: {
|
|
3918
3918
|
doc: "A Winkel Tripel projection."
|
|
3919
|
+
},
|
|
3920
|
+
globe: {
|
|
3921
|
+
doc: "A globe projection."
|
|
3919
3922
|
}
|
|
3920
3923
|
},
|
|
3921
3924
|
"default": "mercator",
|