openlayers 显示闪烁的图标点

  

思路:需要在html代码生成N个要闪烁的点通过遍历生成html代码 ,然后再通过坐标定位点到相应的位置

$("#map").append("

");

 

                    var point_div = document.getElementById("css_animation" + i);

                    var point_overlay = new ol.Overlay({

                        element: point_div,

                        positioning: 'center-center'

                    });

                    map.addOverlay(point_overlay);

                    point_overlay.setPosition(p);

 

样式文件

.pulse-icon1 {

  1. display: inline-block;
  2. width: 15px;
  3. height: 15px;
  4. border-radius: 100%;
  5. background-color: red;
  6. z-index: 999999;
  7. position: relative;
  8. box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.75);

}

.item {

  1. box-shadow: 0 0 6px 2px #2f8;
  2. animation: pulsate 1s ease-out;
  3. animation-iteration-count: infinite;
  4. animation-delay: 1.1s;
  5. -webkit-border-radius: 100%;
  6. border-radius: 100%;
  7. height: 300%;
  8. width: 300%;
  9. animation: pulsate 2s infinite;
  10. position: absolute;
  11. margin: -100% 0 0 -100%;

}

 

效果

openlayers 显示闪烁的图标点_第1张图片

你可能感兴趣的:(Css)