我正在尝试调整在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
});
我在做什么错了?
答案 0 :(得分:0)
我将opacity: 0.6
添加到了
map.on("load", function() {
// create and add the layer
var mil = new esri.layers.MapImageLayer({
'opacity': 0.6,
});