Interface MinimapOptions
anisotropicFilterPitch?: number | null;
apiKey?: string;
aroundCenter?: boolean;
attributionControl?: AttributionControlOptions;
bearing?: number;
bearingSnap?: number;
bounds?: LngLatBoundsLike;
boxZoom?: boolean | BoxZoomHandlerOptions;
cancelPendingTileRequestsWhileZooming?: boolean;
canvasContextAttributes?: WebGLContextAttributesWithType;
center?: LngLatLike;
centerClampedToGround?: boolean;
clickTolerance?: number;
collectResourceTiming?: boolean;
container: string | HTMLElement;
containerStyle: Record<string, string>;
cooperativeGestures?: boolean;
crossSourceCollisions?: boolean;
customAttribution?: string | string[];
customControls?: string | boolean;
doubleClickZoom?: boolean;
dragPan?: boolean | DragPanOptions;
dragRotate?: boolean;
elevation?: number;
experimentalZoomLevelsToOverscale?: number;
fadeDuration?: number;
fitBoundsOptions?: FitBoundsOptions;
forceNoAttributionControl?: boolean;
fullscreenControl?: boolean | ControlPosition;
geolocate?: boolean | "POINT" | "COUNTRY";
geolocateControl?: boolean | ControlPosition;
hash?: string | boolean;
interactive?: boolean;
keyboard?: boolean;
language?: string | LanguageInfo;
locale?: Record<string, string>;
localIdeographFontFamily?: string | false;
logoPosition?: ControlPosition;
logSDKVersion?: boolean;
maptilerLogo?: boolean;
maxBounds?: LngLatBoundsLike;
maxCanvasSize?: [number, number];
maxPitch?: number | null;
maxTileCacheSize?: number | null;
maxTileCacheZoomLevels?: number;
maxZoom?: number | null;
minimap?: boolean | ControlPosition | MinimapOptionsInput;
minPitch?: number | null;
minZoom?: number | null;
navigationControl?: boolean | ControlPosition;
parentRect?: ParentRect;
pitch?: number;
pitchAdjust: boolean;
pitchWithRotate?: boolean;
pixelRatio?: number;
projection?: ProjectionTypes;
projectionControl?: boolean | ControlPosition;
reduceMotion?: boolean;
refreshExpiredTiles?: boolean;
renderWorldCopies?: boolean;
roll?: number;
rollEnabled?: boolean;
rtlTextPlugin?: string | boolean;
scaleControl?: boolean | ControlPosition;
scrollZoom?: boolean | AroundCenterOptions;
style?: string | StyleSpecification | ReferenceMapStyle | MapStyleVariant;
terrain?: boolean;
terrainControl?: boolean | ControlPosition;
terrainExaggeration?: number;
touchPitch?: boolean | AroundCenterOptions;
touchZoomRotate?: boolean | AroundCenterOptions;
trackResize?: boolean;
transformCameraUpdate?: CameraUpdateTransformFunction | null;
transformConstrain?: TransformConstrainFunction | null;
transformRequest?: RequestTransformFunction | null;
useExperimentalTilePreloading?: boolean;
validateStyle?: boolean;
zoom?: number;
zoomAdjust: number;
zoomSnap?: number;
}
Hierarchy (View Summary)
- Omit<MapOptions, "space" | "halo">
- MinimapOptions
Index
Properties
Properties
OptionalanisotropicFilterPitch
The pitch above which to apply anisotropic filtering to the map's raster layers (0-180).
OptionalapiKey
Define the MapTiler Cloud API key to be used. This is strictly equivalent to setting
config.apiKey and will overwrite it.
OptionalaroundCenter
Determines the rotation interaction model:
- When true: Uses "Orbital" logic where rotation is relative to the pivot center. Dragging right at the top rotates clockwise, while dragging right at the bottom rotates counter-clockwise (like spinning a physical globe).
- When false: Uses "Linear" logic where horizontal mouse movement translates directly to bearing change regardless of cursor position.
OptionalattributionControl
Options for an AttributionControl.
Optionalbearing
The initial bearing (rotation) of the map, measured in degrees counter-clockwise from north. If bearing is not specified in the constructor options, MapLibre GL JS will look for it in the map's style object. If it is not specified in the style, either, it will default to 0.
OptionalbearingSnap
The threshold, measured in degrees, that determines when the map's
bearing will snap to north. For example, with a bearingSnap of 7, if the user rotates
the map within 7 degrees of north, the map will automatically snap to exact north.
Optionalbounds
The initial bounds of the map. If bounds is specified, it overrides center and zoom constructor options.
OptionalboxZoom
If true, the "box zoom" interaction is enabled (see BoxZoomHandler).
An Object value configures BoxZoomHandler options.
If boxZoomEnd is provided, the callback runs instead of the default fit-to-box zoom.
OptionalcancelPendingTileRequestsWhileZooming
Determines whether to cancel, or retain, tiles from the current viewport which are still loading but which belong to a farther (smaller) zoom level than the current one.
- If
true, when zooming in, tiles which didn't manage to load for previous zoom levels will become canceled. This might save some computing resources for slower devices, but the map details might appear more abruptly at the end of the zoom. - If
false, when zooming in, the previous zoom level(s) tiles will progressively appear, giving a smoother map details experience. However, more tiles will be rendered in a short period of time.
OptionalcanvasContextAttributes
Set of WebGLContextAttributes that are applied to the WebGL context of the map.
See https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext for more details.
contextType can be set to webgl2 or webgl to force a WebGL version. Not setting it, Maplibre will do it's best to get a suitable context.
Optionalcenter
The initial geographical centerpoint of the map. If center is not specified in the constructor options, MapLibre GL JS will look for it in the map's style object. If it is not specified in the style, either, it will default to [0, 0]
!!! note
MapLibre GL JS uses longitude, latitude coordinate order (as opposed to latitude, longitude) to match GeoJSON.
OptionalcenterClampedToGround
If true, the elevation of the center point will automatically be set to the terrain elevation (or zero if terrain is not enabled). If false, the elevation of the center point will default to sea level and will not automatically update. Defaults to true. Needs to be set to false to keep the camera above ground when pitch > 90 degrees.
OptionalclickTolerance
The max number of pixels a user can shift the mouse pointer during a click for it to be considered a valid click (as opposed to a mouse drag).
OptionalcollectResourceTiming
If true, Resource Timing API information will be collected for requests made by GeoJSON and Vector Tile web workers (this information is normally inaccessible from the main Javascript thread). Information will be returned in a resourceTiming property of relevant data events.
container
The HTML element in which MapLibre GL JS will render the map, or the element's string id. The specified element must have no children.
containerStyle
OptionalcooperativeGestures
If true or set to an options object, the map is only accessible on desktop while holding Command/Ctrl and only accessible on mobile with two fingers. Interacting with the map using normal gestures will trigger an informational screen. With this option enabled, "drag to pitch" requires a three-finger gesture. Cooperative gestures are disabled when a map enters fullscreen using FullscreenControl.
OptionalcrossSourceCollisions
If true, symbols from multiple sources can collide with each other during collision detection. If false, collision detection is run separately for the symbols in each source.
OptionalcustomAttribution
Attributions to show in addition to any other attributions in an AttributionControl.
OptionalcustomControls
Detect custom external controls. (default: false, will detect automatically if true)
OptionaldoubleClickZoom
If true, the "double click to zoom" interaction is enabled (see DoubleClickZoomHandler).
OptionaldragPan
If true, the "drag to pan" interaction is enabled. An Object value is passed as options to DragPanHandler.enable.
OptionaldragRotate
If true, the "drag to rotate" interaction is enabled (see DragRotateHandler).
Optionalelevation
The elevation of the initial geographical centerpoint of the map, in meters above sea level. If elevation is not specified in the constructor options, it will default to 0.
OptionalexperimentalZoomLevelsToOverscale
Allows overzooming by splitting vector tiles after max zoom. Defines the number of zoom level that will overscale from map's max zoom and below. For example if the map's max zoom is 20 and this is set to 3, the zoom levels of 20, 19 and 18 will be overscaled and the rest will be split. When undefined, all zoom levels after source's max zoom will be overscaled. This can help in reducing the size of the overscaling and improve performance in high zoom levels. The drawback is that it changes rendering for polygon centered labels and changes the results of query rendered features.
OptionalfadeDuration
Controls the duration of the fade-in/fade-out animation for label collisions after initial map load, in milliseconds. This setting affects all symbol layers. This setting does not affect the duration of runtime styling transitions or raster tile cross-fading.
OptionalfitBoundsOptions
A FitBoundsOptions options object to use only when fitting the initial bounds provided above.
OptionalforceNoAttributionControl
attributionControl
OptionalfullscreenControl
Show the full screen control. (default: false, will show if true)
Optionalgeolocate
Method to position the map at a given geolocation. Only if:
hashisfalsecenteris not provided
If the value is true of "POINT" (given by GeolocationType.POINT) then the positionning uses the MapTiler Cloud
Geolocation to find the non-GPS location point.
The zoom level can be provided in the Map constructor with the zoom option or will be 13 if not provided.
If the value is "COUNTRY" (given by GeolocationType.COUNTRY) then the map is centered around the bounding box of the country.
In this case, the zoom option will be ignored.
If the value is false, no geolocation is performed and the map centering and zooming depends on other options or on
the built-in defaults.
If this option is non-false and the options center is also provided, then center prevails.
Default: false
OptionalgeolocateControl
Show the geolocate control. (default: true, will hide if false)
Optionalhash
If true, the map's position (zoom, center latitude, center longitude, bearing, and pitch) will be synced with the hash fragment of the page's URL.
For example, https://example.com#2.59/39.26/53.07/-24.1/60.
An additional string may optionally be provided as an alternative to indicate a parameter-styled hash.
For example, passing hash: "foo" will produce a hash like https://example.com#foo=2.59/39.26/53.07/-24.1/60.
This is usefull for allowing multiple maps or other state.
Optionalinteractive
If false, no mouse, touch, or keyboard listeners will be attached to the map, so it will not respond to interaction.
Optionalkeyboard
If true, keyboard shortcuts are enabled (see KeyboardHandler).
Optionallanguage
Define the language of the map. This can be done directly with a language ISO code (eg. "en"),
the ISO code prepended with the OSM flag (eg. "name:en" or even just "name"),
or with a built-in shorthand (eg. Language.ENGLISH).
Note that this is equivalent to setting the config.primaryLanguage and will overwrite it.
Optionallocale
A patch to apply to the default localization table for UI strings, e.g. control tooltips. The locale object maps namespaced UI string IDs to translated strings in the target language; see src/ui/default_locale.js for an example with all supported string IDs. The object may specify all UI strings (thereby adding support for a new translation) or only a subset of strings (thereby patching the default translation table).
For an example, see https://maplibre.org/maplibre-gl-js/docs/examples/locale-switching/
Alternatively, search the official plugins page for plugins related to localization.
OptionallocalIdeographFontFamily
Defines a CSS
font-family for locally overriding generation of Chinese, Japanese, and Korean characters.
For these characters, font settings from the map's style will be ignored, except for font-weight keywords (light/regular/medium/bold).
Set to false, to enable font settings from the map's style for these glyph ranges.
The purpose of this option is to avoid bandwidth-intensive glyph server requests.
OptionallogoPosition
A string representing the position of the MapLibre wordmark on the map. Valid options are top-left,top-right, bottom-left, or bottom-right.
OptionallogSDKVersion
Whether to log the SDK version to the console. Default: Unless this is set explicitly to false, the SDK version will be logged to the console.
OptionalmaptilerLogo
Shows or hides the MapTiler logo in the bottom left corner (only for paid plans).
Default is false for paid plans.
For free plans the MapTiler logo is always visible, and cannot be disabled.
OptionalmaxBounds
If set, the map will be constrained to the given bounds.
OptionalmaxCanvasSize
The canvas' width and height max size. The values are passed as an array where the first element is max width and the second element is max height.
You shouldn't set this above WebGl MAX_TEXTURE_SIZE.
OptionalmaxPitch
The maximum pitch of the map (0-180).
OptionalmaxTileCacheSize
The maximum number of tiles stored in the tile cache for a given source. If omitted, the cache will be dynamically sized based on the current viewport which can be set using maxTileCacheZoomLevels constructor options.
OptionalmaxTileCacheZoomLevels
The maximum number of zoom levels for which to store tiles for a given source. Tile cache dynamic size is calculated by multiplying maxTileCacheZoomLevels with the approximate number of tiles in the viewport for a given source.
OptionalmaxZoom
The maximum zoom level of the map. Users cannot zoom in beyond this level. (0–24)
Optionalminimap
Display a minimap in a user defined corner of the map. (default: bottom-left corner)
If set to true, the map will assume it is a minimap and forego the attribution control.
OptionalminPitch
The minimum pitch of the map (0-180).
OptionalminZoom
The minimum zoom level of the map. Users cannot zoom out beyond this level. (0–24)
OptionalnavigationControl
Show the navigation control. (default: true, will hide if false)
OptionalparentRect
Optionalpitch
The initial pitch (tilt) of the map, measured in degrees away from the plane of the screen (0-85). If pitch is not specified in the constructor options, MapLibre GL JS will look for it in the map's style object. If it is not specified in the style, either, it will default to 0. Values greater than 60 degrees are experimental and may result in rendering issues. If you encounter any, please raise an issue with details in the MapLibre project.
pitchAdjust
OptionalpitchWithRotate
If false, the map's pitch (tilt) control with "drag to rotate" interaction will be disabled.
OptionalpixelRatio
The pixel ratio.
The canvas' width attribute will be container.clientWidth * pixelRatio and its height attribute will be container.clientHeight * pixelRatio. Defaults to devicePixelRatio if not specified.
Optionalprojection
Whether the projection should be "mercator" or "globe". If not provided, the style takes precedence. If provided, overwrite the style.
OptionalprojectionControl
Show the projection control. (default: false, will show if true)
OptionalreduceMotion
If true, gesture inertia (such as panning) is disabled. If not provided, gesture inertia defaults to the user's device settings.
OptionalrefreshExpiredTiles
If false, the map won't attempt to re-request tiles once they expire per their HTTP cacheControl/expires headers.
OptionalrenderWorldCopies
If true, multiple copies of the world will be rendered side by side beyond -180 and 180 degrees longitude. If set to false:
- When the map is zoomed out far enough that a single representation of the world does not fill the map's entire container, there will be blank space beyond 180 and -180 degrees longitude.
- Features that cross 180 and -180 degrees longitude will be cut in two (with one portion on the right edge of the map and the other on the left edge of the map) at every zoom level.
Optionalroll
The initial roll angle of the map, measured in degrees counter-clockwise about the camera boresight. If roll is not specified in the constructor options, MapLibre GL JS will look for it in the map's style object. If it is not specified in the style, either, it will default to 0.
OptionalrollEnabled
If false, the map's roll control with "drag to rotate" interaction will be disabled.
OptionalrtlTextPlugin
Whether to enable the RTL plugin or import a different one. Default is undefined, which means the plugin is enabled by default.
OptionalscaleControl
Show the scale control. (default: false, will show if true)
OptionalscrollZoom
If true, the "scroll to zoom" interaction is enabled. AroundCenterOptions are passed as options to ScrollZoomHandler.enable.
Optionalstyle
Style of the map. Can be:
- a full style URL (possibly with API key)
- a shorthand with only the MapTIler style name (eg.
"streets-v2") - a longer form with the prefix
"maptiler://"(eg."maptiler://streets-v2")
Optionalterrain
Enables 3D terrain if true. (default: false)
OptionalterrainControl
Show the terrain control. (default: false, will show if true)
OptionalterrainExaggeration
Exaggeration factor of the terrain. (default: 1, no exaggeration)
OptionaltouchPitch
If true, the "drag to pitch" interaction is enabled. An Object value is passed as options to TwoFingersTouchPitchHandler.enable.
OptionaltouchZoomRotate
If true, the "pinch to rotate and zoom" interaction is enabled. An Object value is passed as options to TwoFingersTouchZoomRotateHandler.enable.
OptionaltrackResize
If true, the map will automatically resize when the browser window resizes.
OptionaltransformCameraUpdate
A callback run before the map's camera is moved due to user input or animation. The callback can be used to modify the new center, zoom, pitch and bearing. Expected to return an object containing center, zoom, pitch or bearing values to overwrite.
OptionaltransformConstrain
A callback that overrides how the map constrains the viewport's lnglat and zoom to respect the longitude and latitude bounds.
See
Customize the map transform constrain Expected to return an object containing center and zoom.
OptionaltransformRequest
A callback run before the Map makes a request for an external URL. The callback can be used to modify the url, set headers, or set the credentials property for cross-origin requests.
Expected to return an object with a url property and optionally headers and credentials properties.
OptionaluseExperimentalTilePreloading
Whether to enable the experimental tile preloading feature. Default is false.
OptionalvalidateStyle
If false, style validation will be skipped. Useful in production environments due to enabling tree-shaking of the validation code in some environments and minor performance improvements. Disabling this option comes at the cost of less clear error messages
Optionalzoom
The initial zoom level of the map. If zoom is not specified in the constructor options, MapLibre GL JS will look for it in the map's style object. If it is not specified in the style, either, it will default to 0.
zoomAdjust
OptionalzoomSnap
The step increment the zoom level will snap to.
For example, if zoomSnap is 1, the map will snap to whole integers during discrete zoom operations.
If set to 0, zooming is continuous.
Construct a type with the properties of T except for those in type K.