GoogleMap API infoWindow不会变得透明

时间:2019-03-14 10:46:42

标签: css google-maps google-maps-api-3

我想以半透明的形式显示Google Map API信息窗口。 因为我要显示包含许多数据的大型信息窗口。 在infoWindow地图的图像隐藏下。 但是我不能通过InforWindow的boxClass属性来应用透明(CSS不透明)。

请提出解决方案,如何解决此问题?

非常感谢。

[我的代码]

   var infowindow = new google.maps.InfoWindow({
    // content from custom function with many datas i made //
    content: infowincontentHTMLDoor(nmfacil, lat, lon, addrfacil),
    maxWidth: 720,
    boxClass: "infowinclass"  // ?????????
  });
infowindow.open(map, marker);


<style type="text/css">
    .infowinclass {
      opacity: 0.5;  
    }
</style>   

1 个答案:

答案 0 :(得分:0)

自我解决。 我按照以下方式应用CSS

if (string.IsNullOrEmpty(e.Value?.ToString()))
{
    e.CellStyle = AStyle;
}