forked from MapComplete/MapComplete
Fix: attempt to fix #2312
This commit is contained in:
parent
41c74baf99
commit
a11f2d0cbc
1 changed files with 5 additions and 0 deletions
|
@ -352,6 +352,11 @@ class LineRenderingLayer {
|
||||||
// After waiting 'till the map has loaded, the data might have changed already
|
// After waiting 'till the map has loaded, the data might have changed already
|
||||||
// As such, we only now read the features from the featureSource and compare with the previously set data
|
// As such, we only now read the features from the featureSource and compare with the previously set data
|
||||||
const features = featureSource.data
|
const features = featureSource.data
|
||||||
|
if (features.length === 0) {
|
||||||
|
// This is a very ugly workaround for https://source.mapcomplete.org/MapComplete/MapComplete/issues/2312,
|
||||||
|
// but I couldn't find the root cause
|
||||||
|
return
|
||||||
|
}
|
||||||
const src = <GeoJSONSource>map.getSource(this._layername)
|
const src = <GeoJSONSource>map.getSource(this._layername)
|
||||||
{
|
{
|
||||||
// Add source to the map or update the feature source
|
// Add source to the map or update the feature source
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue