<?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: Very interesting problem in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149575#M3756</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;SL API doesn't support displaying tiled layers that are not in the same spatial reference as the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The first tiled layer defines automatically the Spatial Reference of the map, then others tiled layers that doesn't fit that SR are not displayed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That's because tiled layers use pregenerated cached tiles that are only valid in the layer SR.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But instead of ArcGISTiledMapServiceLayer you can use ArcGISDynamicMapServiceLayer. In this case the projection is done on the fly by the server (but take care of the performance impact).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The Silverlight Viewer is doing that for you. If you add a cached tiled service URL that doesn't fit the map SR, an ArcGISDynamicMapServiceLayer is added. If the SR is OK, an ArcGISTiledMapServiceLayer is added.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jun 2012 06:40:25 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2012-06-08T06:40:25Z</dc:date>
    <item>
      <title>Very interesting problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149568#M3749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a map service that I recently decided to run cached. Here are the problems presented by it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm running server 10.1, GIS Desktop 10.1 and Silverlight 5&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When my cached service is set in my silverlight ap to ArcGISDynamicServiceLayer, it works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When it is set to ArcGISTiledServiceLayer in a silverlight app that doesn't have any other tiled layers, it works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When it is set to tiled in a silverlight app with other tiled layers (e.g.: any esri map service), it fails to display, though the other map services do.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If i set it as a later in the ESRI Silverlight Viewer program, it plays nice with all other maps and works like a charm.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What could be causing this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 19:00:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149568#M3749</guid>
      <dc:creator>JaredWhite</dc:creator>
      <dc:date>2012-06-05T19:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: Very interesting problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149569#M3750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have a map service that I recently decided to run cached. Here are the problems presented by it.&lt;BR /&gt;I'm running server 10.1, GIS Desktop 10.1 and Silverlight 5&lt;BR /&gt;When my cached service is set in my silverlight ap to ArcGISDynamicServiceLayer, it works.&lt;BR /&gt;When it is set to ArcGISTiledServiceLayer in a silverlight app that doesn't have any other tiled layers, it works.&lt;BR /&gt;When it is set to tiled in a silverlight app with other tiled layers (e.g.: any esri map service), it fails to display, though the other map services do.&lt;BR /&gt;If i set it as a later in the ESRI Silverlight Viewer program, it plays nice with all other maps and works like a charm.&lt;BR /&gt;What could be causing this?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The first layer in the map determines the maps spatial reference.&amp;nbsp; If your mapservice is in the map as a tiled mapservice and its spatial reference doesn't match the first layer, it wont display.&amp;nbsp; If it's added as an ArcGISDynamicServiceLayer it will reproject.&amp;nbsp; If it's the only layer, then obviously it will display.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The ESRI Silverlight Viewer program may actually be detecting that your tiled layer's spatial reference does not match that of the map, and inteligently switch it to an ArcGISDynamicServiceLayer instead.&amp;nbsp; That's just a guess.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Lance&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 01:59:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149569#M3750</guid>
      <dc:creator>LanceCrumbliss</dc:creator>
      <dc:date>2012-06-06T01:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Very interesting problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149570#M3751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This relates back to why ESRI changed their standard to using Web Mercator from the original WGS.&amp;nbsp; In order for multiple tiled services to display together they must use the same tiling scheme so in order to use Bing, Google, ESRI together they all needed to be based on the same spatial reference.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 02:40:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149570#M3751</guid>
      <dc:creator>JoeHershman</dc:creator>
      <dc:date>2012-06-06T02:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Very interesting problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149571#M3752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your responses. I should have been more specific though, i followed the online caching tutorial on the server help page to the T, projected coordinate system is WGS 1984 Web Mercator (Auxiliary Sphere) and the tile template is the Bing/Google Earth/ Google Maps one that is recommended. The actual data projected is NAD27, but it's been run through NADCON to NAD83 and then projected to WGS84 Web Mercator using the NAD_to_WGS84_5 specs in ArcDesktop. I guess that's where I started thinking the problem was weird, that and the fact that it runs perfectly on the Silverlight Viewer as a tiled service.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 11:39:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149571#M3752</guid>
      <dc:creator>JaredWhite</dc:creator>
      <dc:date>2012-06-06T11:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Very interesting problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149572#M3753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can anybody figure this out? It's projected correctly onto wgs 84 Web Mercator but still not playing nice with esri map services if published in a simple silverlight program, but works fine if published through silverlight viewer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 12:14:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149572#M3753</guid>
      <dc:creator>JaredWhite</dc:creator>
      <dc:date>2012-06-07T12:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: Very interesting problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149573#M3754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hmm Silverlight Viewer use a later version of the API (I think v2.4). "minerjoe" is correct though: &lt;/SPAN&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;multiple tiled services to display together they must use the same tiling scheme &lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;. I'd be curious to see if using Silverlight4 and API v2.4 will be any different. Could you try that?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 15:55:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149573#M3754</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2012-06-07T15:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Very interesting problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149574#M3755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tried with a simple silverlight app both api 2.4 sl4 and api 2.4 sl5 before i posted. I'm wiping my server now and republishing the maps from scratch, we'll see if the problem persists.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 16:55:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149574#M3755</guid>
      <dc:creator>JaredWhite</dc:creator>
      <dc:date>2012-06-07T16:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Very interesting problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149575#M3756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;SL API doesn't support displaying tiled layers that are not in the same spatial reference as the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The first tiled layer defines automatically the Spatial Reference of the map, then others tiled layers that doesn't fit that SR are not displayed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That's because tiled layers use pregenerated cached tiles that are only valid in the layer SR.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But instead of ArcGISTiledMapServiceLayer you can use ArcGISDynamicMapServiceLayer. In this case the projection is done on the fly by the server (but take care of the performance impact).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The Silverlight Viewer is doing that for you. If you add a cached tiled service URL that doesn't fit the map SR, an ArcGISDynamicMapServiceLayer is added. If the SR is OK, an ArcGISTiledMapServiceLayer is added.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2012 06:40:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/very-interesting-problem/m-p/149575#M3756</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-06-08T06:40:25Z</dc:date>
    </item>
  </channel>
</rss>

