814/remove mapbox references (#816)

Fixes #814

* fix: remove outdated references to mapbox
* docs: fix references in readme
* chore: fix mapbox references in tests
* chore: fix mapbox references in stories, webpack config
* chore: remove empty array
This commit is contained in:
Kevin Schaul
2023-08-28 21:17:49 -05:00
committed by GitHub
parent a99cbc00ba
commit 3727c9ad5e
31 changed files with 82 additions and 125 deletions

View File

@@ -13,8 +13,8 @@ describe("map", function() {
await browser.waitUntil(async function () {
return (
await browser.isVisible(".mapboxgl-ctrl-zoom")
&& await browser.getText(".mapboxgl-ctrl-zoom") === "Zoom level: "+(zoomLevel)
await browser.isVisible(".maplibregl-ctrl-zoom")
&& await browser.getText(".maplibregl-ctrl-zoom") === "Zoom level: "+(zoomLevel)
);
}, 10*1000)
})
@@ -25,9 +25,9 @@ describe("map", function() {
])+"#"+zoomLevel+"/41.3805/2.1635");
await browser.alertAccept();
await browser.click(".mapboxgl-ctrl-zoom-in")
await browser.click(".maplibregl-ctrl-zoom-in")
await browser.waitUntil(async function () {
var text = await browser.getText(".mapboxgl-ctrl-zoom")
var text = await browser.getText(".maplibregl-ctrl-zoom")
return text === "Zoom level: "+(zoomLevel+1);
}, 10*1000)
})