Example of moving a map from one target to another.
Click on the teleport button the map to move the map from one target to another.
import 'ol/ol.css';
import Map from 'ol/Map';
import OSM from 'ol/source/OSM';
import TileLayer from 'ol/layer/Tile';
import View from 'ol/View';
var map = new Map({
layers: [
new TileLayer({
source: new OSM(),
}) ],
view: new View({
center: [0, 0],
zoom: 2,
}),
});
map.setTarget('map1');
var teleportButton = document.getElementById('teleport');
teleportButton.addEventListener(
'click',
function () {
var target = map.getTarget() === 'map1' ? 'map2' : 'map1';
map.setTarget(target);
},
false
);
<!DOCTYPE html>
<html lang="en">
<head>
<title>Teleporting Maps</title>
<!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep"></script>
<style>
.map {
width: 100%;
height:400px;
}
</style>
</head>
<body>
<div id="map1" class="map"></div>
<div id="map2" class="map"></div>
<button id="teleport">Teleport</button>
<script src="main.js"></script>
</body>
</html>
{
"name": "teleport",
"dependencies": {
"ol": "6.4.3"
},
"devDependencies": {
"parcel": "1.11.0"
},
"scripts": {
"start": "parcel index.html",
"build": "parcel build --experimental-scope-hoisting --public-url . index.html"
}
}