UNPKG

mapbox-gl-compare

Version:
83 lines (64 loc) 2.08 kB
'use strict'; const test = require('tape'); window.mapboxgl = require('mapbox-gl'); require('../'); mapboxgl.accessToken = process.env.MapboxAccessToken; // Tests test('Compare', function(t) { const a = new mapboxgl.Map({ container: document.createElement('div'), style: 'mapbox://styles/mapbox/light-v8' }); const b = new mapboxgl.Map({ container: document.createElement('div'), style: 'mapbox://styles/mapbox/dark-v8' }); // insert the container's into the document so compare.setSlider test works document.body.appendChild(a.getContainer()); document.body.appendChild(b.getContainer()); const container = document.createElement('div'); const compare = new mapboxgl.Compare(a, b, container); t.ok(!!a.getContainer().style.clip, 'Map A is clipped'); t.ok(!!b.getContainer().style.clip, 'Map B is clipped'); b.jumpTo({ bearing: 20, center: { lat: 16, lng: -155 }, pitch: 20, zoom: 3 }); t.equals(a.getZoom(), 3, 'Zoom is synched'); t.equals(a.getPitch(), 20, 'Pitch is synched'); t.equals(a.getBearing(), 20, 'Bearing is synched'); t.equals(a.getCenter().lng, -155, 'Lng is synched'); t.equals(a.getCenter().lat, 16, 'Lat is synched'); compare.setSlider(20); t.equals(compare.currentPosition, 20, 'Slider has been moved'); compare.remove(); t.ok(!a.getContainer().style.clip, 'Map A is no longer clipped'); t.ok(!b.getContainer().style.clip, 'Map B is no longer clipped'); b.jumpTo({ bearing: 10, center: { lat: 26, lng: -105 }, pitch: 30, zoom: 5 }); t.equals(a.getZoom(), 3, 'Zoom is no longer synched'); t.equals(a.getPitch(), 20, 'Pitch is no longer synched'); t.equals(a.getBearing(), 20, 'Bearing is no longer synched'); t.equals(a.getCenter().lng, -155, 'Lng is no longer synched'); t.equals(a.getCenter().lat, 16, 'Lat is no longer synched'); t.end(); }); // close the smokestack window once tests are complete test('shutdown', function(t) { t.end(); setTimeout(function() { window.close(); }); });