`
kabike
  • 浏览: 596109 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

arcgis javascript API加载地图显示质量差的问题

    博客分类:
  • GIS
 
阅读更多
用arcgis javascript API加载了地图服务以后,发现地图里图像比原图差,有点状的模糊


原来在加载图层的时候,可以指定图片格式,默认是png8,指定为jpg后就可以了

引用
var imageParameters = new ImageParameters();
        imageParameters.format = "jpeg"; //set the image type to PNG24, note default is PNG8.

        //Takes a URL to a non cached map service.
        var dynamicMapServiceLayer = new ArcGISDynamicMapServiceLayer("http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_Population_World/MapServer", {
          "opacity" : 0.5,
          "imageParameters" : imageParameters
        });
  • 大小: 21.2 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics