<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Loading individual rasters in mapcontrol in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68226#M1700</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;Thanks, that's my fallback scenario. I just wasn't sure whether the non-visible layers would also get downloaded since I can only set this property in the initialize event&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;The non visible layers are not downloaded at first. But as soon as you set a layer as visible, this layer will get downloaded (with a dynamicmapservice you get an image at each zoom or pan).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;What about charts? Are these supported?&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;You can't reuse the chart defined with ArcGIS desktop but you can redefine your charts at the client side by using the Silverlight charting tools (&lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/27261-Graphs-and-Charts"&gt;sample&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Also, are raster going to be supported in the next release?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;I am not aware of any plan to support raster inside a feature layer. Today images are already supported by ArcGISDynamicMapService and by ImageServices (see &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#SimpleImageService"&gt;sample&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Apr 2011 06:53:27 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2011-04-11T06:53:27Z</dc:date>
    <item>
      <title>Loading individual rasters in mapcontrol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68223#M1697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I get an error when I try to add a raster layer to a mapcontrol layers collection using the FeatureLayer(url) where url points to a single layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can add the raster using the ArcGISDynamicMapServiceLayer and passing the url of the service, but then I get all the layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In my scenario I have one service with multiple layers (all rasters) and I want to load one layer (i.e. raster) at a time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;btw, adding a layer at a time works fine for standard geometries (point,line,polygon), just not for rasters.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 06:29:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68223#M1697</guid>
      <dc:creator>SteveVidal</dc:creator>
      <dc:date>2011-04-08T06:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Loading individual rasters in mapcontrol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68224#M1698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The FeatureLayers doesn't support raster.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You can use an ArcGISDynamicMapServiceLayer&amp;nbsp; and set the VisibleLayers property to the layer you want to keep.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 08:57:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68224#M1698</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-04-08T08:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Loading individual rasters in mapcontrol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68225#M1699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dominique,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;You can use an ArcGISDynamicMapServiceLayer and set the VisibleLayers property to the layer you want to keep.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, that's my fallback scenario. I just wasn't sure whether the non-visible layers would also get downloaded since I can only set this property in the initialize event (i.e. for the ArcGISDynamicMapServiceLayer). Can you please confirm that this is the case?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;The FeatureLayers doesn't support raster.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What about charts? Are these supported? Also, are raster going to be supported in the next release? (something like RasterLayer would be nice).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for the feedback.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 06:00:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68225#M1699</guid>
      <dc:creator>SteveVidal</dc:creator>
      <dc:date>2011-04-11T06:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Loading individual rasters in mapcontrol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68226#M1700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;Thanks, that's my fallback scenario. I just wasn't sure whether the non-visible layers would also get downloaded since I can only set this property in the initialize event&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;The non visible layers are not downloaded at first. But as soon as you set a layer as visible, this layer will get downloaded (with a dynamicmapservice you get an image at each zoom or pan).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;What about charts? Are these supported?&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;You can't reuse the chart defined with ArcGIS desktop but you can redefine your charts at the client side by using the Silverlight charting tools (&lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/27261-Graphs-and-Charts"&gt;sample&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Also, are raster going to be supported in the next release?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;I am not aware of any plan to support raster inside a feature layer. Today images are already supported by ArcGISDynamicMapService and by ImageServices (see &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#SimpleImageService"&gt;sample&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 06:53:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68226#M1700</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-04-11T06:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Loading individual rasters in mapcontrol</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68227#M1701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks again, Dominique.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I am not aware of any plan to support raster inside a feature layer. Today images are already supported by ArcGISDynamicMapService and by ImageServices (see sample) &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was thinking about a new type (e.g. RasterLayer) with no editing functionality, rather than adding raster support to the existing feature layer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 00:32:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/loading-individual-rasters-in-mapcontrol/m-p/68227#M1701</guid>
      <dc:creator>SteveVidal</dc:creator>
      <dc:date>2011-04-12T00:32:08Z</dc:date>
    </item>
  </channel>
</rss>

