• Mapxtreme2008v6.8 vs2008(asp.net)几个修改项目


    1、添加普通按钮实现全图显示、添加动态图层,用ajax实现局部刷新

    单击按钮后老是提示Command.js中GetMap()有误;后经查找代码做如下改动后成功。

    MapXtremeWebResources.Command.js中原代码为mapImage.style.clip = 'rect(' + 0 + ' ' + w + ' ' + h + ' ' + 0 +')';
    操作时经常提示参数有误,后改为mapImage.style.clip = 'rect(' + 0 + 'px, ' + w + 'px, ' + h + 'px, ' + 0 + 'px)';成功。

    注:要为"px,"格式。

    2、单击Mapxtreme自带的放大缩小工具后进行拉框放大缩小时Interaction.js老提示参数有误。

    将下面的函数做代码中所示修改即可,但目前拉框时没有虚线范围,待修改。

       function EnableVML(element)
    {
        element.document.namespaces.add("v", "urn:schemas-microsoft-com:vml")
        if (element.document.styleSheets.length < 1) {
            var oStyleEl = element.document.createElement("style");
            element.document.body.appendChild(oStyleEl);
    }


    //element.doc.styleSheets.item(0).add("v\\:*", "behavior:url(#default#VML)");

    将上面的代码改为下面的样式
    element.document.styleSheets.item(0).addRule("v", "behavior:url(#default#VML)");
    }

    其实上面的两个小问题在IE6中测试都没问题,在IE8以上版本中会出现(用兼容模式也不会出现),如上改动后在IE8以上版本中不用改为兼容模式也不会出错了。

  • 相关阅读:
    ubuntu下安装gcc,g++
    React Native核心组件View的介绍
    React Native组件生命周期
    React Native的props和state的介绍
    android出现anr(application not response)的分析
    HDU 2050:折线分割平面
    Codeforces 989A:A Blend of Springtime
    Codeforces 990B :Micro-World
    51Nod 1089:最长回文子串 V2(Manacher算法)
    51Nod 1088:最长回文子串(暴力)
  • 原文地址:https://www.cnblogs.com/enjoyprogram/p/1939465.html
Copyright © 2020-2023  润新知