latefinalMapController_controller;@overrideWidgetbuild(BuildContextcontext){returnMapLibreMap(options:MapOptions(center:Geographic(lon:9.17,lat:47.68)),onMapCreated:(controller)=>_controller=controller,onStyleLoaded:(style)async{// load the image datafinalresponse=awaithttp.get(Uri.parse(StyleLayersSymbolPage.imageUrl));finalbytes=response.bodyBytes;// add the image to the mapawaitstyle.addImage('marker',bytes);// add some points as GeoJSON source to the mapawaitstyle.addSource(constGeoJsonSource(id:'points',data:_geoJsonString,),);// display the image on the mapawaitstyle.addLayer(constSymbolStyleLayer(id:'images',sourceId:'points',layout:{// see https://maplibre.org/maplibre-style-spec/layers/#symbol'icon-image':'marker','icon-size':0.08,'icon-anchor':'bottom',},),);});}