Skip to content

Commit af87cf3

Browse files
committed
Update types
1 parent 4128dfa commit af87cf3

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/types/generated/schema.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12273,6 +12273,17 @@ export interface GeoLayout {
1227312273
* Minimum: 1.001
1227412274
*/
1227512275
distance?: number;
12276+
/**
12277+
* Sets the maximum zoom level of the map view, relative to `projection.scale`. A `maxscale` of *2* (200%) prevents the user from zooming in beyond twice the base zoom level. Defaults to *null* for no upper bound.
12278+
* Minimum: 0
12279+
*/
12280+
maxscale?: number;
12281+
/**
12282+
* Sets the minimum zoom level of the map view, relative to `projection.scale`. A `minscale` of *0.5* (50%) prevents the user from zooming out beyond half the base zoom level. The default of *0* imposes no lower bound.
12283+
* @default 0
12284+
* Minimum: 0
12285+
*/
12286+
minscale?: number;
1227612287
/** For conic projection types only. Sets the parallels (tangent, secant) where the cone intersects the sphere. */
1227712288
parallels?: [number, number];
1227812289
rotation?: {

0 commit comments

Comments
 (0)