Dear Gurus!
In xaml or in code I create layers for the findTask or somethink else, for example:
<esri:Map x:Name="myMap" > <esri:ArcGISDynamicMapServiceLayer ID="BaseLayer" Url="http://localhost:6080/ArcGIS/rest/services/streetRK/MapServer" /> <esri:FeatureLayer ID="bridges" Url="http://localhost:6080/ArcGIS/rest/services/streetRK/MapServer/2" > </esri:FeatureLayer> <esri:GraphicsLayer ID="MyGraphicsLayer" /> </esri:Map>
or in code:
FeatureLayer fLayer = new FeatureLayer(); fLayer.Url = "http://localhost:6080/ArcGIS/rest/services/streetRK/MapServer/1"; fLayer.ID = "routes_new"; myMap.Layers.Add(fLayer);
How can I make this layers does not appear in the legend or in the map object?
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.