<?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 Showing Gap Between BaseMap and 3D Object in WPF in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1110196#M10555</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am new one for ArcGIS.&lt;/P&gt;&lt;P&gt;I tried&amp;nbsp; to load the local .slpk file. Its loaded successfully.&lt;/P&gt;&lt;P&gt;But 3D Object not rendered perfectly in base map.&lt;/P&gt;&lt;P&gt;Some gap is showing between base map and 3D object. like Below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="GAP.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25874iEE6563598A88766F/image-size/large?v=v2&amp;amp;px=999" role="button" title="GAP.png" alt="GAP.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;My Code is below&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;==============&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2.png" style="width: 807px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25876i010C2FC6E4C6189C/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please give us advice&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Oct 2021 12:55:38 GMT</pubDate>
    <dc:creator>KarthikS</dc:creator>
    <dc:date>2021-10-22T12:55:38Z</dc:date>
    <item>
      <title>Showing Gap Between BaseMap and 3D Object in WPF</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1110196#M10555</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am new one for ArcGIS.&lt;/P&gt;&lt;P&gt;I tried&amp;nbsp; to load the local .slpk file. Its loaded successfully.&lt;/P&gt;&lt;P&gt;But 3D Object not rendered perfectly in base map.&lt;/P&gt;&lt;P&gt;Some gap is showing between base map and 3D object. like Below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="GAP.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25874iEE6563598A88766F/image-size/large?v=v2&amp;amp;px=999" role="button" title="GAP.png" alt="GAP.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;My Code is below&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;==============&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2.png" style="width: 807px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25876i010C2FC6E4C6189C/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please give us advice&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 12:55:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1110196#M10555</guid>
      <dc:creator>KarthikS</dc:creator>
      <dc:date>2021-10-22T12:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Gap Between BaseMap and 3D Object in WPF</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1110324#M10556</link>
      <description>&lt;P&gt;It looks like you need to add an elevation source to the scene view base surface. See this sample for an example of how to do that in code:&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/wpf/sample-code/get-elevation-at-a-point/" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/net/wpf/sample-code/get-elevation-at-a-point/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The important lines are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Uri elevationUri = new Uri("https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer");
Surface baseSurface = new Surface();
baseSurface.ElevationSources.Add(new ArcGISTiledElevationSource(elevationUri));
myScene.BaseSurface = baseSurface;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively try experimenting with the SurfacePlacement property of you "slpkLayer". For more info see&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Mapping.SurfacePlacement.html" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Mapping.SurfacePlacement.html.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 16:04:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1110324#M10556</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2021-10-22T16:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Gap Between BaseMap and 3D Object in WPF</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1110496#M10561</link>
      <description>&lt;P&gt;Thanks you &lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/3014" target="_self"&gt;&lt;SPAN class=""&gt;MichaelBranscomb&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;When i set the elevation source gap issue is resolved.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But vegetations and highways is not showing after setting the elevation source.&lt;/P&gt;&lt;P&gt;see the following figure&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Before set the elevation source" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25938iDC70015AF45ECA5F/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="Before set the elevation source" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Before set the elevation source&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="After set the elevation source" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25939i4B594EE5B098A64B/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="After set the elevation source" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;After set the elevation source&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please give us advice&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Oct 2021 10:15:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1110496#M10561</guid>
      <dc:creator>KarthikS</dc:creator>
      <dc:date>2021-10-23T10:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Showing Gap Between BaseMap and 3D Object in WPF</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1112299#M10599</link>
      <description>&lt;P&gt;The follow-up question was posted separately as&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-runtime-sdk-for-net-questions/vegetations-and-highways-is-not-showing-after/td-p/1111154" target="_blank"&gt;https://community.esri.com/t5/arcgis-runtime-sdk-for-net-questions/vegetations-and-highways-is-not-showing-after/td-p/1111154&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Oct 2021 01:39:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/showing-gap-between-basemap-and-3d-object-in-wpf/m-p/1112299#M10599</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2021-10-29T01:39:25Z</dc:date>
    </item>
  </channel>
</rss>

