bakaemon

Results 4 comments of bakaemon

Could be related that on real IOS 12 device the annotation in some case disappeared or not updating properly.

> Hi all, while our team is working on this bug, what you can do to get the image update on iOS is to give a random `iconImage` each time...

@maios Sorry for the late reply, it was late when I posted the last comment. It was just an extension method I added. Here you go: ```dart PointAnnotation copyWith({ Map?...

I managed to find a fix for this, by adding `onStyleMissingListener` to MapWidget: ```dart MapWidget( resourceOptions: ResourceOptions( accessToken: mapboxToken, tileStoreUsageMode: TileStoreUsageMode.READ_AND_UPDATE, ), onMapCreated: _onMapCreated, onScrollListener: _onScrollListener, onStyleImageMissingListener: _onStyleImageMissing, //... )...