You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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;
12276
12287
/** For conic projection types only. Sets the parallels (tangent, secant) where the cone intersects the sphere. */
0 commit comments