<?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: How to add buildings layer in Unreal Engine 5 in 3D Mapping Questions</title>
    <link>https://community.esri.com/t5/3d-mapping-questions/how-to-add-buildings-layer-in-unreal-engine-5/m-p/1212269#M1061</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Take a look at the layers topic in the documentation and the sample it refers too.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/unreal-engine/layers/" target="_blank"&gt;https://developers.arcgis.com/unreal-engine/layers/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For example, here's the unity version in C# (that I'm more familiar with)&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;		var arcGISMap = new Esri.GameEngine.Map.ArcGISMap(arcGISMapComponent.MapType);

		// Set the Basemap
		arcGISMap.Basemap = Esri.GameEngine.Map.ArcGISBasemap.CreateImagery(APIKey);

		// Create the Elevation
		arcGISMap.Elevation = new Esri.GameEngine.Map.ArcGISMapElevation(new Esri.GameEngine.Elevation.ArcGISImageElevationSource("https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer", "Elevation", ""));

		// Create ArcGIS layers and add them to the map
		var layer_3 = new Esri.GameEngine.Layers.ArcGISImageLayer("https://tiles.arcgis.com/tiles/4yjifSiIG17X0gW4/arcgis/rest/services/NewYorkCity_PopDensity/MapServer", "MyLayer_3", 1.0f, true, "");
		arcGISMap.Layers.Add(layer_3);

		var buildingLayer = new Esri.GameEngine.Layers.ArcGIS3DObjectSceneLayer("https://tiles.arcgis.com/tiles/P3ePLMYs2RVChkJx/arcgis/rest/services/Buildings_NewYork_17/SceneServer", "Building Layer", 1.0f, true, "");
		arcGISMap.Layers.Add(buildingLayer);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What trouble are you having?&lt;/P&gt;</description>
    <pubDate>Wed, 14 Sep 2022 03:08:06 GMT</pubDate>
    <dc:creator>sjones_esriau</dc:creator>
    <dc:date>2022-09-14T03:08:06Z</dc:date>
    <item>
      <title>How to add buildings layer in Unreal Engine 5</title>
      <link>https://community.esri.com/t5/3d-mapping-questions/how-to-add-buildings-layer-in-unreal-engine-5/m-p/1211958#M1060</link>
      <description>&lt;P&gt;Can someone be so kind as to show me how I can add a buildings layer to my basemap in Unreal? I read the SDK and did the sample NYC project.&amp;nbsp; But I cannot bring buildings into my map. It would be great to have some easy to follow instructions on such a basic topic.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone please helkp me with this? Im sure its very easy if you know how.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 12:52:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-mapping-questions/how-to-add-buildings-layer-in-unreal-engine-5/m-p/1211958#M1060</guid>
      <dc:creator>JakeUpfront</dc:creator>
      <dc:date>2022-09-13T12:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to add buildings layer in Unreal Engine 5</title>
      <link>https://community.esri.com/t5/3d-mapping-questions/how-to-add-buildings-layer-in-unreal-engine-5/m-p/1212269#M1061</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Take a look at the layers topic in the documentation and the sample it refers too.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/unreal-engine/layers/" target="_blank"&gt;https://developers.arcgis.com/unreal-engine/layers/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For example, here's the unity version in C# (that I'm more familiar with)&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;		var arcGISMap = new Esri.GameEngine.Map.ArcGISMap(arcGISMapComponent.MapType);

		// Set the Basemap
		arcGISMap.Basemap = Esri.GameEngine.Map.ArcGISBasemap.CreateImagery(APIKey);

		// Create the Elevation
		arcGISMap.Elevation = new Esri.GameEngine.Map.ArcGISMapElevation(new Esri.GameEngine.Elevation.ArcGISImageElevationSource("https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer", "Elevation", ""));

		// Create ArcGIS layers and add them to the map
		var layer_3 = new Esri.GameEngine.Layers.ArcGISImageLayer("https://tiles.arcgis.com/tiles/4yjifSiIG17X0gW4/arcgis/rest/services/NewYorkCity_PopDensity/MapServer", "MyLayer_3", 1.0f, true, "");
		arcGISMap.Layers.Add(layer_3);

		var buildingLayer = new Esri.GameEngine.Layers.ArcGIS3DObjectSceneLayer("https://tiles.arcgis.com/tiles/P3ePLMYs2RVChkJx/arcgis/rest/services/Buildings_NewYork_17/SceneServer", "Building Layer", 1.0f, true, "");
		arcGISMap.Layers.Add(buildingLayer);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What trouble are you having?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 03:08:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-mapping-questions/how-to-add-buildings-layer-in-unreal-engine-5/m-p/1212269#M1061</guid>
      <dc:creator>sjones_esriau</dc:creator>
      <dc:date>2022-09-14T03:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to add buildings layer in Unreal Engine 5</title>
      <link>https://community.esri.com/t5/3d-mapping-questions/how-to-add-buildings-layer-in-unreal-engine-5/m-p/1386132#M1129</link>
      <description>&lt;P&gt;Have you done this? Could you please let me know how you did?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 17:14:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-mapping-questions/how-to-add-buildings-layer-in-unreal-engine-5/m-p/1386132#M1129</guid>
      <dc:creator>MounikaNamani</dc:creator>
      <dc:date>2024-02-23T17:14:17Z</dc:date>
    </item>
  </channel>
</rss>

