Platforms
all
Version of flutter maplibre_gl
0.21.0
Bug Description
Run the maplibre_gl example, replacing stlyString with a black screen. The error message is:This is expected for tiles that were being prefetched but are no longer needed for the map to render.
Steps to Reproduce
Directly replace styleString with style in my map box
Expected Results
Actual Results

Code Sample
MapLibreMap(
key: UniqueKey(),
initialCameraPosition: const CameraPosition(
target: LatLng(139.6503, 35.6762),
zoom: 11.0,
),
styleString: "https://api.mapbox.com/styles/v1/ethan2077/cm7yiv4cw009701si8ub2dpqw.html?title=copy&access_token=my_token&zoomwheel=true&fresh=true#15.3/35.680193/139.766591",
// styleString: "assets/osm_style.json",
)