@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/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
},
|
|
102
102
|
projection: {
|
|
103
103
|
type: "projection",
|
|
104
|
-
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.",
|
|
104
|
+
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.",
|
|
105
105
|
example: {
|
|
106
106
|
name: "albers",
|
|
107
107
|
center: [
|
|
@@ -3922,6 +3922,9 @@
|
|
|
3922
3922
|
},
|
|
3923
3923
|
winkelTripel: {
|
|
3924
3924
|
doc: "A Winkel Tripel projection."
|
|
3925
|
+
},
|
|
3926
|
+
globe: {
|
|
3927
|
+
doc: "A globe projection."
|
|
3925
3928
|
}
|
|
3926
3929
|
},
|
|
3927
3930
|
"default": "mercator",
|