-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Fatal signal 11 (SIGSEGV), code 1, fault addr 0x10 in tid 25592 (om.map.goong.v2) #8826
Comments
@kingfisherphuoc instead of readding the source you can reload the content of geojson source with |
@kingfisherphuoc do you have a bit more information how to reproduce? The following code snipper doesn't crash for me: @Override
public void run() {
mapboxMap.removeSource(source);
mapboxMap.removeLayer(layer);
mapboxMap.addSource(source);
mapboxMap.addLayer(layer);
handler.postDelayed(this, 3000);
} The following does, but with a valid java exception: @Override
public void run() {
mapboxMap.addSource(source);
mapboxMap.addLayer(layer);
handler.postDelayed(this, 3000);
}
|
I can solve it by changing source |
@kingfisherphuoc I got same problem here, The application freezes by adding ~50 geometries. |
Same problem here. Updating GeoJsonSource with a geoJson-String blocks the main thread. Using a thread to invoke
|
It's not supported to call methods such as |
Platform: Android
Mapbox SDK version: 5.0.2
Steps to trigger behavior
Expected behavior
Do not crash when remove and re-add new layers.
Actual behavior
Get error log as above.
The text was updated successfully, but these errors were encountered: