Fix: don't set invalid coordinates

This commit is contained in:
Pieter Vander Vennet 2023-07-08 01:21:11 +02:00
parent fe9afb415f
commit fbc3bce510

View file

@ -353,9 +353,13 @@ export class MapLibreAdaptor implements MapProperties, ExportableMap {
const center = map.getCenter()
if (center.lng !== loc.lon || center.lat !== loc.lat) {
if (isNaN(loc.lon) || isNaN(loc.lat)) {
console.error("Got invalid lat or lon, not setting")
} else {
map.setCenter({ lng: loc.lon, lat: loc.lat })
}
}
}
private async awaitStyleIsLoaded(): Promise<void> {
const map = this._maplibreMap.data