根据Flutter中的变量更新自定义标记的图标

问题描述 投票:0回答:1

我是一个总动摇的菜鸟,我正在尝试创建一个可在地图上向我显示一些标记的应用程序,该标记指向一些传感器的位置。标记的图标将取决于为每个传感器收集的数据。

Map with custom markers

到目前为止,我已经设法:

  • 在用户位置显示地图
  • 为所有传感器放置标记
  • 将标记图标更改为custsom图标
  • 添加对话框,包含传感器的数据,每个标记

我需要:

  • 根据传感器的数据为标记使用不同的图标

这是我在地图上显示标记的方式:

@override
     Widget build(BuildContext context) {    

      var userLocation = Provider.of<UserLocation>(context );

      Set<Marker> markers = Set();           


   //this cycle creates markers with sensor's data
      for(var i=0;   i < sensors.length ; i++){
       var tempF=(strSensors[i]["temp_f"]).toString();
       double pm2_5= double.parse(strSensors[i]["PM2_5Value"]);     

       //It returns a tuple wit Aqi value(item1) and description(item2). Depending on item1 value the marker's icon should change.  
       var Aqi=AqiCalculation().AqiValue(pm2_5);


      //my attempt to update teh value of the asset's path depending on Aqi.item1 value 
       setState((){
         marcador=updateCustomMapPin(Aqi.item1); 
       });       


        Marker resultMarker = Marker(

        markerId: MarkerId(strSensors[i]["ID"].toString()),     
        position: LatLng(strSensors[i]["Lat"].toDouble(),strSensors[i]["Lon"].toDouble()),
        icon: BitmapDescriptor.fromBytes(markerIcon),
        onTap: (){  

          //shows an image in diaolog box depending on Aqi value
                   if(Aqi.item1 > 80){
                     image="https://i.gifer.com/72fB.gif";               
                   }
                   else{
                     image= "https://raw.githubusercontent.com/Shashank02051997/FancyGifDialog-Android/master/GIF's/gif14.gif";
                   }                                    


        String tempC;
                   tempC=((int.parse(tempF)-32)/1.8).toStringAsPrecision(4);                   

                                showDialog<void>(                                   
                       context: context,
                       builder: (_) => NetworkGiffyDialog(
                               key: keys[1],                            
                               image: Image.network(
                                 image,
                                 fit: BoxFit.cover,                              
                                // alignment:Alignment.bottomLeft,
                               ),
                               entryAnimation: EntryAnimation.TOP_LEFT,
                               title: Text('Sensor: ${strSensors[i]["Label"]}'
                               ,
                                 textAlign: TextAlign.center,
                                 style: TextStyle(
                                     fontSize: 22.0, fontWeight: FontWeight.bold),
                               ),
                               description: Text(
                                 'PM2.5: $pm2_5 Temp:${tempC}° Aqi:${Aqi.item1} Status:${Aqi.item2}',
                                 textAlign: TextAlign.center,
                                 style: TextStyle(
                                     fontSize: 22.0, fontWeight: FontWeight.normal),

                               ),

                               onlyOkButton: true,
                               onOkButtonPressed: (){
                                 Navigator.pop(context);//closes dialogbox
                               },                                   
                             )
                    );          

        }
       );
   // Add it to Set
       markers.add(resultMarker);
       }  

要更改默认标记图标,我这样做:

  @override
     void initState(){
       super.initState();
       setCustomMappin('android/assets/Cloudgray.png');
        }

    //Converts image to Unint8List
         Future<Uint8List> getBytesFromAsset(String path, int width) async {
      ByteData data = await rootBundle.load(path);
      ui.Codec codec = await ui.instantiateImageCodec(data.buffer.asUint8List(), targetWidth: width);
      ui.FrameInfo fi = await codec.getNextFrame();
      return (await fi.image.toByteData(format: ui.ImageByteFormat.png)).buffer.asUint8List();
    }



     void setCustomMappin(marker)async {

       markerIcon = await getBytesFromAsset(marker, 150);
     }

这会将所有图标更改为我的默认图标资产。我试图通过在创建所有标记的循环中传递动态地更新资产的路径:

setState((){
             marcador=updateCustomMapPin(Aqi.item1); 
           }); 

使用此功能:

    //returns icon path depending on the value
     updateCustomMapPin(value)  {

      String marker='';

           if(value<=50){
            marker = 'android/assets/Cloudgreen.png';
           }
           else if(value>50  && value<=100){
             marker='android/assets/Cloudyellow.png';
           }
           else if(value>100  && value<=150){
             marker='android/assets/CloudOrange.png';
           }
           else if(value>150  && value<=200){
             marker='android/assets/Cloudred.png';


 }
       else if(value>200  && value<=300){
         marker='android/assets/Cloudpurple.png';
       }
       else{
       marker='android/assets/Cloudtoxic.png';
       }

       return marker;

     }

这就是我遇到的问题,尽管如此,标记的图标仍然没有改变,在创建每个标记时,都会显示正确的图标。

也许是我了解Flutter应用程序的生命周期问题,希望您能为我提供帮助。

谢谢。

google-maps flutter google-maps-markers
1个回答
0
投票
如果在setState中添加日志会发生什么?
© www.soinside.com 2019 - 2024. All rights reserved.