• 在地图左下角添加图例,根据不同的事件显示不同的图例


    效果图:
    img

    CSS 及 Html:

    css:
    #bottom-img{position: absolute; bottom: 15px; right: 20px; z-index: 20;}
    html:
    <div id="bottom-img">
    
    </div>
    

    JS:控制图例的显示与隐藏,并根据不同的图片url显示不同的图例

    //控制图例的显示与隐藏
        var bottomImg = {
            show:function (imageUrl) {
                var imgDiv = document.getElementById('bottom-img');
                imgDiv.innerHTML = "<img style='height:70px' src=" + imageUrl + " alt=''>";
    
            },
            hide:function() {
                var imgDiv = document.getElementById('bottom-img');
                imgDiv.innerHTML = "";
            }
        };
    

    调用JS方法传图片路径:

    function showImages(){
    	//显示图例
    	bottomImg.show(imageUrl);
    }
    
    //隐藏图例;
    function hideImages(){
    	//隐藏图例
       bottomImg.hide();
    }
    
  • 相关阅读:
    pagefile.sys
    Oracle数据库同义词
    oracle临时表
    修改Oracle并行度
    Oracle 反键索引/反向索引
    Ajax基础2
    DOM高级
    面向对象--高级
    面向对象---中级
    面向对象-初级
  • 原文地址:https://www.cnblogs.com/aixing/p/13327478.html
Copyright © 2020-2023  润新知