zoukankan      html  css  js  c++  java
  • SuperMap IClient for Ajax之图例

    首先显示图例用的CSS以及Div布局代码为:

          #legendContainer{
                right:30px;
                    top:100px;
                    248px !important;
                    250px;
                    height:398px !important;
                    height:400px;
                    position:absolute;
                    border:1px solid #6FAFF1;
                    z-index:99;
                    background-color:#6FAFF1;
                    cursor:default;
                }
                #legendCaption {
                    height:20px;
                    text-align:left;
                    vertical-align:middle;
                    left:10px;
                    top:5px;
                    position:relative;
                    color:White;
                    font-family:"Microsoft YaHei";
                    font-size:16px;
                }
                #legendContent {
                    232px !important;
                    234px;
                    height:362px !important;
                    height:364px;
                    background-color:White;
                    border:1px solid White;
                    margin:7px;
                    overflow:auto;
                }
    	//这里是地图控件放置位置
    <div id="legendContainer">
                <div id="legendCaption">
                    <span>图例</span>
                </div>
                <div id="legendContent">
                </div>
     </div>
    

      其中Javascript部分为:

    		var container = $get('legendContent');
    		var legend = new SuperMap.Web.Controls.Legend({'id':'legend','isShowOnlyVisibleLayer':false,'layers':[layer],'container':container});
    		map.addControls([legend]);
    

      

  • 相关阅读:
    vuejs组件交互
    markdown table语法
    vue循环中的v-show
    apache跨域
    sublime text执行PHP代码
    PHP语法
    方法(method)和函数(function)有什么区别?
    PHP MVC单入口
    phpstudy部署thinkPHP
    MACD判断定背离,底背离
  • 原文地址:https://www.cnblogs.com/jerfer/p/2950199.html
Copyright © 2011-2022 走看看