<?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 Crop/Clip Tiled Layer data to Map extend in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328102#M8429</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How can i clip/crop the tiled map data to the extend of the Map? I am creating the Merged Tiled Layer Image based upon the level row and column passed in from the SL client onto the server. Now I want to send the cropped or clipped image back to the SL client. I am doing this because this tiled map is from a cross domain origin. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Prompt help will be very much appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Jan 2011 08:19:30 GMT</pubDate>
    <dc:creator>roufbaba</dc:creator>
    <dc:date>2011-01-01T08:19:30Z</dc:date>
    <item>
      <title>Crop/Clip Tiled Layer data to Map extend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328102#M8429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How can i clip/crop the tiled map data to the extend of the Map? I am creating the Merged Tiled Layer Image based upon the level row and column passed in from the SL client onto the server. Now I want to send the cropped or clipped image back to the SL client. I am doing this because this tiled map is from a cross domain origin. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Prompt help will be very much appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Jan 2011 08:19:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328102#M8429</guid>
      <dc:creator>roufbaba</dc:creator>
      <dc:date>2011-01-01T08:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Crop/Clip Tiled Layer data to Map extend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328103#M8430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You could use a proxy server and set the ProxyUrl property to this server.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jan 2011 07:04:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328103#M8430</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-01-03T07:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Crop/Clip Tiled Layer data to Map extend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328104#M8431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank very much for sending the prompt reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think I wasn't able to clear my point properly. I am able to send the image back to client quite succesfully. But the issue is I need to send the cropped image which should match exactly the current extend of the Map. I need to determine the offset just like in javascript using esri.TileUtils.getCandidateTileInfo&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var delta = this.map._visibleDelta ? this.map._visibleDelta : this.map.__visibleDelta;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"OffsetX": candidateTileInfo.tile.offsets.x - delta.x + (this.width / 2)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"OffsetY": candidateTileInfo.tile.offsets.y - delta.y + (this.height / 2)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and Best Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Rouf&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jan 2011 10:28:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328104#M8431</guid>
      <dc:creator>roufbaba</dc:creator>
      <dc:date>2011-01-03T10:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Crop/Clip Tiled Layer data to Map extend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328105#M8432</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;Do you have any idea about the issue? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Rouf&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 15:12:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328105#M8432</guid>
      <dc:creator>roufbaba</dc:creator>
      <dc:date>2011-01-05T15:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Crop/Clip Tiled Layer data to Map extend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328106#M8433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;With Silverlight there is no exact equivalency to the JavaScript TileUtils class, but you can use the TileInfo property of the ArcGISTiledMapServiceLayer : &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.TiledLayer~TileInfo.html"&gt;http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.TiledLayer~TileInfo.html&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;By using the array of Lods, the Width, the Height and the Origin, you should be able to do what you want but probably not that easy than with TileUtils class.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 13:21:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/crop-clip-tiled-layer-data-to-map-extend/m-p/328106#M8433</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-01-06T13:21:00Z</dc:date>
    </item>
  </channel>
</rss>

