Minmap Plugin
A plugin that provides a minimap functionality.
Instalation
Just do:
npm i @tomtom-international/web-sdk-plugin-minimap
You must also include the minimap stylesheet in your project. It's located here:
node_modules/@tomtom-international/web-sdk-plugin-minimap/dist/Minimap.css
Usage
In this example we assume that you already have the Tomtom Maps SDK for Web library included.
import Minimap from '@tomtom-international/web-sdk-plugin-minimap'
const ttMinimap = new Minimap({
mapRef: tt.map,
zoomOffset: 5,
ignorePitchAndBearing: true,
mapOptions: {
key: '<your-tomtom-maps-sdk-key>',
style: 'tomtom://vector/1/basic-main',
dragRotate: false
}
});
const map = tt.map({
key: '<your-tomtom-maps-sdk-key>',
container: 'map',
style: 'tomtom://vector/1/basic-main'
}, {
center: [19.45773, 51.76217],
zoom: 12
});
map.addControl(ttMinimap, 'bottom-right');