<?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: map area cut off on full extent in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84253#M2027</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you set it to the full extent that you get from the service (ie layer.FullExtent), note that the extent the server reports might not be correct if your data changes. Sometimes a REST cache refresh or republish of the service is required.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your screenshot doesn't really show what you mean by "cut off" though. There is some white area all around the map. Is this what you mean? This is caused by the 15px margin you have on the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As a side note you should avoid putting DropShadow on a container of the map. It really hurts performance when zooming and panning.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The best thing to do is have two separate elements for this. One for dropshadow and one for map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ie.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; 
&amp;lt;Grid&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;Border Effect="{StaticResource dropShadow}" /&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;Grid&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map /&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/Grid&amp;gt;
&amp;lt;/Grid&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 23:13:48 GMT</pubDate>
    <dc:creator>dotMorten_esri</dc:creator>
    <dc:date>2021-12-10T23:13:48Z</dc:date>
    <item>
      <title>map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84249#M2023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I divided the root layout to several grid. one grid has the map. I set the full extent on initialize, but the map still gets cut off on both side (width is more than twice the height). depends on different resolution, the lower the resolution, the more area cut off.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2010 22:51:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84249#M2023</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-10T22:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84250#M2024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you check the container for Margin and Padding?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 15:42:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84250#M2024</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-12-13T15:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84251#M2025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;here is my code&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;Grid Grid.Column="1" Margin="6,8,12,12" Effect="{StaticResource dropShadow}"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Rectangle RadiusX="12" RadiusY="12" Fill="#4e7ba3" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Rectangle RadiusX="9" RadiusY="9" Fill="White" Margin="3"&amp;gt;&amp;lt;/Rectangle&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Border BorderThickness="1" BorderBrush="#ffffff" CornerRadius="10"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map x:Name="Map" Background="White" ExtentChanged="MyMap_ExtentChanged" MouseClick="QueryPoint_MouseClick" MouseMove="Map_MouseMove" Margin="15"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer Visible="False" ID="Ortho Photo" Url="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://chgisservice/ArcGIS/rest/services/live/ortho_2008/MapServer/" rel="nofollow" target="_blank"&gt;http://chgisservice/ArcGIS/rest/services/live/ortho_2008/MapServer/&lt;/A&gt;&lt;SPAN&gt;"&amp;nbsp; /&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISDynamicMapServiceLayer ID="Property Layers" Visible="True" DisableClientCaching="True" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://chgisservice/ArcGIS/rest/services/live/property/MapServer" rel="nofollow" target="_blank"&gt;http://chgisservice/ArcGIS/rest/services/live/property/MapServer&lt;/A&gt;&lt;SPAN&gt;" Initialized="ArcGISDynamicMapServiceLayer_Initialized"&amp;nbsp;&amp;nbsp; /&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISDynamicMapServiceLayer ID="Zoning Layers" Visible="False" DisableClientCaching="True" Url="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://chgisservice/ArcGIS/rest/services/live/zoning/MapServer" rel="nofollow" target="_blank"&gt;http://chgisservice/ArcGIS/rest/services/live/zoning/MapServer&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&amp;lt;/esri:ArcGISDynamicMapServiceLayer&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:GraphicsLayer&amp;nbsp; ID="MyGraphicsLayer"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:GraphicsLayer&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Border&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;!--more stuff here, such as mouse coordinates, scalebars, navigator --&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/grid&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 15:49:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84251#M2025</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-13T15:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84252#M2026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;here is the screenshot. you can see the map is cut off on both side. supposed to be full extend.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 15:53:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84252#M2026</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-13T15:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84253#M2027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you set it to the full extent that you get from the service (ie layer.FullExtent), note that the extent the server reports might not be correct if your data changes. Sometimes a REST cache refresh or republish of the service is required.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your screenshot doesn't really show what you mean by "cut off" though. There is some white area all around the map. Is this what you mean? This is caused by the 15px margin you have on the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As a side note you should avoid putting DropShadow on a container of the map. It really hurts performance when zooming and panning.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The best thing to do is have two separate elements for this. One for dropshadow and one for map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ie.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; 
&amp;lt;Grid&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;Border Effect="{StaticResource dropShadow}" /&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;Grid&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map /&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/Grid&amp;gt;
&amp;lt;/Grid&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:13:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84253#M2027</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2021-12-10T23:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84254#M2028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the suggestion on the dropshadow effects. will try that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is that there are few blocks cut off on both sides (east and west side). the lower the screen resolution, more blocks cut off. about 1km of area on both sides not displayed on the current resolution. on a wide screen monitor, less area cut off. the map service has been recreated, refreshed many times since the app was built. The problem is always there.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;feels like the map is loaded into the parent grid rather than grid.column=1&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 19:59:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84254#M2028</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-13T19:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84255#M2029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;here is another screenshot with the overview map. The map is on fullextent right now. Not sure how overview map works but the red box covers the area available on the map. you can see there are few blocks on both side of the map are outside of the red box and they are not cut off on the map.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 21:58:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84255#M2029</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-13T21:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84256#M2030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If your ArcGISTiledMapServiceLayer&amp;nbsp; and your ArcGISDynamicMapServiceLayers are not using the same spatial reference, the full extent of the map is defined by the sole ArcGISTiledMapServiceLayer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What is the full extent of this service?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I suggest you to test after removing the ArcGISTiledMapServiceLayer&amp;nbsp; in order to check if the result is better without this layer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 07:47:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84256#M2030</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-12-14T07:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84257#M2031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We just found out that too. it was because of the orthophoto which is a tiledmapservicelayer. however the ortho has the correct spatial reference. Everything seems to be fine when opening the ortho in ArcMap or ArcCatalog. But when loaded it to the map service, the extent cut off.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What could be the problem with the ortho photo?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 15:43:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84257#M2031</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-14T15:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84258#M2032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If the ortho is DynamicMapservicelayer, looks fine. once it is changed to cached map (tiledmapservicelayer), the problem starts.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 16:22:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84258#M2032</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-14T16:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84259#M2033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So, it seems that the issue is coming from the full extent of your ortho photo layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you verify that the full extent of this layer is bigger than what you see?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, if you know the extent you need,&amp;nbsp; a possible workaround is to set the extent of the map in XAML :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;esri:Map Extent=".........&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 09:07:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84259#M2033</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-12-15T09:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84260#M2034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes. the extent is correct. and i also tried to put the extent in xaml and in code behind. no luck. But when I use the Dynamic map service layer for the ortho photo, everything is fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if use cached map, the extent cuts off. if i create the cached map using jpg instead of png, more area is cut off.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 15:27:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84260#M2034</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-15T15:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84261#M2035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;i also tried to put the extent in xaml and in code behind. no luck.&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you mean that whatever the map extent you initialize, the result is the same? Looks strange:confused:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 12:44:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84261#M2035</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2010-12-16T12:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: map area cut off on full extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84262#M2036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;yes. and if i cache the map in jpg, more area cut off. if i do not cache the map at all (dynamic), everything works fine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 15:14:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/map-area-cut-off-on-full-extent/m-p/84262#M2036</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2010-12-16T15:14:16Z</dc:date>
    </item>
  </channel>
</rss>

