在ArcGIS Image Layer上调整透明度

时间:2019-02-22 11:51:27

标签: esri arcgis-js-api

我正在尝试调整在Java版ArcGIS / ESRI API上叠加的PNG的透明度。

我尝试在opacity中设置一个var选项,但是运气不高。

map.on("load", function() {
// create and add the layer
var mil = new esri.layers.MapImageLayer({
});

// create an add the actual image
var mi = new esri.layers.MapImage({
  'extent': { 'xmin': -125.0, 'ymin': 22.0, 'xmax': -66.5, 'ymax': 52.0},
  'href': 'https://some.website/some.image.PNG',
  'opacity': 0.75
});

我在做什么错了?

1 个答案:

答案 0 :(得分:0)

我将opacity: 0.6添加到了

map.on("load", function() {
// create and add the layer
var mil = new esri.layers.MapImageLayer({
  'opacity': 0.6,
});