如何根据变量值指定不同的折线笔触颜色?

时间:2020-03-08 18:00:29

标签: if-statement google-polyline

在这里用javascript完成新手操作,所以请保持柔和...

我正在尝试根据变量“压力”的当前值为线定义不同的颜色。

我尝试了下面的代码,但显然这不起作用。谁能在正确的方向帮助我做IF声明,或者如果不是这样,我该怎么做?


   var pivotLine = new google.maps.Polyline({
         path: [gps, pivotcentre],
    //     strokeColor: "#fafd00",

         if(pressure >= 1.35 and pressure <= 1.55){
           strokeColor = "#00ff00";
         };
         if(pressure < 1.35){
           strokeColor = "#996600";
         };
         if(pressure > 1.55){
           strokeColor = "#ff33cc";
         };
         strokeOpacity: 1,
         strokeWeight: 5
         });

         strokeOpacity: 1,
         strokeWeight: 5
         });
         pivotLine.setMap(map);

0 个答案:

没有答案