打开和关闭地图图层

时间:2013-09-30 19:55:39

标签: maps arcgis esri arcgis-server

如果它不是另一个问题。我整天都在看这个,不知道这里出了什么问题。我再次有一个带有两层图层的图层,一个县图层和一个msa图层。我在页面上有两个链接,其中一个表示msa的县。在点击任一链接时,我想关闭地图的一层并显示在正确的图层上。这是点击事件:

$('.map-type-link').live('click', function () {
    params.display_region_type = parseInt($(this).attr('region_type'));

    if (params.display_region_type == 1) {

        app.currentFl = app.featureLayers[0];

    }
    else {

        app.currentFl = app.MSAfl;            
        app.flVis.setVisibility(false);
        app.MSAfl.setVisibility(true);
        app.currentFl.redraw();                        

    }                 

});

不仅仅是点击县,app.flvis仍然可见。

创建要素图层的位置:

dojo.forEach(app.layersUrls, function (info, idx) {
    app.featureLayers[idx] = new esri.layers.FeatureLayer(
        app.layersUrls[idx], {
            mode: esri.layers.FeatureLayer.MODE_ONDEMAND,
            outFields: app.outFields[idx],
            opacity: 0.80
            }
        );       

    app.featureLayers[idx].setRenderer(br);

    //create min and max scales when layers load
    dojo.connect(app.featureLayers[idx], 'onLoad', function () {
        app.featureLayers[idx].minScale = app.layerScales[idx].min;
        app.featureLayers[idx].maxScale = app.layerScales[idx].max;
    });//ends connections 

    //add THIS feature layer to the map
    app.map.addLayer(app.featureLayers[idx]);

1 个答案:

答案 0 :(得分:0)

(我假设所有变量的含义。)

要打开MSA图层,您有四行代码(在else语句中):

app.currentFl = app.MSAfl;            
app.flVis.setVisibility(false);
app.MSAfl.setVisibility(true);
app.currentFl.redraw();

在if语句中,您只有一行代码,一行不会打开或关闭任何图层的行:

app.currentFl = app.featureLayers[0];

相反,我认为您需要遵循在else语句中所做的示例:

app.currentFl = app.flVis;            
app.MSAfl.setVisibility(false);
app.flVis.setVisibility(true);
app.currentFl.redraw();

假设app.flVis是您的县级图层,可能是也可能不是。