<?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: SLPK (LAS Dataset) in ArcGIS Runtime 100.1  in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/slpk-las-dataset-in-arcgis-runtime-100-1/m-p/220786#M2644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jack,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Scene layers from SLPKs that contain 3D objects or an&amp;nbsp;integrated mesh are supported for use in Runtime 100.1.&amp;nbsp;&amp;nbsp;Use of point clouds in a SLPK is not supported yet.&amp;nbsp; It will be supported in an upcoming release.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Aug 2017 01:17:45 GMT</pubDate>
    <dc:creator>RexHansen</dc:creator>
    <dc:date>2017-08-22T01:17:45Z</dc:date>
    <item>
      <title>SLPK (LAS Dataset) in ArcGIS Runtime 100.1</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/slpk-las-dataset-in-arcgis-runtime-100-1/m-p/220785#M2643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been trying to follow a few ArcGIS Runtime 100.1 tutorials and samples. Basically I want to display a SLPK in a Scene. The SLPK has a LAS Dataset inside it. Is this supported yet? I seem to remember point clouds not being supported in previous releases. &lt;A href="https://community.esri.com/migrated-users/3050"&gt;Morten Nielsen&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MainWindow.xaml.cs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;using Esri.ArcGISRuntime.Mapping;&lt;BR /&gt;using Esri.ArcGISRuntime;&lt;BR /&gt;using System.Threading;&lt;BR /&gt;using System;&lt;/P&gt;&lt;P&gt;namespace SLPK_TEST_NET_V1&lt;BR /&gt;{&lt;BR /&gt; /// &amp;lt;summary&amp;gt;&lt;BR /&gt; /// Interaction logic for MainWindow.xaml&lt;BR /&gt; /// &amp;lt;/summary&amp;gt;&lt;BR /&gt; public partial class MainWindow&lt;BR /&gt; {&lt;BR /&gt; public MainWindow()&lt;BR /&gt; {&lt;BR /&gt; InitializeComponent();&lt;/P&gt;&lt;P&gt;// Execute initialization &lt;BR /&gt; Initialize();&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;public void Initialize()&lt;BR /&gt; {&lt;BR /&gt; // Create new Scene&lt;BR /&gt; Scene myScene = new Scene();&lt;/P&gt;&lt;P&gt;// Set Scene's base map property&lt;BR /&gt; myScene.Basemap = Basemap.CreateImagery();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Create new scene layer from the url&lt;BR /&gt; ArcGISSceneLayer sceneLayer = new ArcGISSceneLayer();&lt;BR /&gt; Uri sceneURI = new Uri(@"C:\\Miscellaneous\\SLPK Test\\4043695.slpk");&lt;BR /&gt; sceneLayer.Source = sceneURI;&lt;/P&gt;&lt;P&gt;sceneLayer.LoadStatusChanged += myScene_LoadStatusChanged;&lt;/P&gt;&lt;P&gt;loadStatusLabel.Content = sceneLayer.LoadStatus.ToString();&lt;/P&gt;&lt;P&gt;if (sceneLayer.LoadStatus == LoadStatus.Loaded)&lt;BR /&gt; {&lt;BR /&gt; double lat = sceneLayer.FullExtent.GetCenter().X;&lt;BR /&gt; double lon = sceneLayer.FullExtent.GetCenter().Y;&lt;BR /&gt; double height = sceneLayer.FullExtent.GetCenter().Z;&lt;/P&gt;&lt;P&gt;// Add created layer to the operational layers collection&lt;BR /&gt; myScene.OperationalLayers.Add(sceneLayer);&lt;/P&gt;&lt;P&gt;// Create a camera with coordinates showing layer data &lt;BR /&gt; Camera camera = new Camera(lat, lon, height, 345, 65, 0);&lt;/P&gt;&lt;P&gt;// Assign the Scene to the SceneView&lt;BR /&gt; MySceneView.Scene = myScene;&lt;/P&gt;&lt;P&gt;// Set view point of scene view using camera &lt;BR /&gt; MySceneView.SetViewpointCameraAsync(camera);&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;void myScene_LoadStatusChanged(object sender, Esri.ArcGISRuntime.LoadStatusEventArgs e)&lt;BR /&gt; {&lt;BR /&gt; // Update the load status information&lt;BR /&gt; Dispatcher.BeginInvoke(&lt;BR /&gt; new ThreadStart(() =&amp;gt;&lt;BR /&gt; loadStatusLabel.Content = string.Format("Scene Layer' load status : {0}", e.Status.ToString())&lt;BR /&gt; ));&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MainWindow.xaml&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Window x:Class="SLPK_TEST_NET_V1.MainWindow"&lt;BR /&gt;&lt;SPAN&gt; xmlns="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fschemas.microsoft.com%2Fwinfx%2F2006%2Fxaml%2Fpresentation" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/winfx/2006/xaml/presentation&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; xmlns:x="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fschemas.microsoft.com%2Fwinfx%2F2006%2Fxaml" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/winfx/2006/xaml&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; xmlns:mc="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fschemas.openxmlformats.org%2Fmarkup-compatibility%2F2006" rel="nofollow" target="_blank"&gt;http://schemas.openxmlformats.org/markup-compatibility/2006&lt;/A&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; xmlns:d="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fschemas.microsoft.com%2Fexpression%2Fblend%2F2008" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/expression/blend/2008&lt;/A&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; xmlns:esri="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fschemas.esri.com%2Farcgis%2Fruntime%2F2013" rel="nofollow" target="_blank"&gt;http://schemas.esri.com/arcgis/runtime/2013&lt;/A&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;&lt;BR /&gt; SizeToContent="WidthAndHeight"&lt;BR /&gt; Title="MainWindow" Height="350" Width="525"&amp;gt;&lt;BR /&gt; &amp;lt;Grid&amp;gt;&lt;BR /&gt; &amp;lt;Grid.RowDefinitions&amp;gt;&lt;BR /&gt; &amp;lt;RowDefinition Height="auto" /&amp;gt;&lt;BR /&gt; &amp;lt;RowDefinition Height="*" /&amp;gt;&lt;BR /&gt; &amp;lt;/Grid.RowDefinitions&amp;gt;&lt;BR /&gt; &amp;lt;esri:SceneView x:Name="MySceneView"/&amp;gt;&lt;BR /&gt; &amp;lt;StackPanel Orientation="Horizontal"&amp;gt;&lt;BR /&gt; &amp;lt;Label x:Name="loadStatusLabel" Content="Scene Layer' load status : " Background="Yellow"/&amp;gt;&lt;BR /&gt; &amp;lt;/StackPanel&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;/Grid&amp;gt;&lt;BR /&gt;&amp;lt;/Window&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Aug 2017 06:38:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/slpk-las-dataset-in-arcgis-runtime-100-1/m-p/220785#M2643</guid>
      <dc:creator>JackHansen2</dc:creator>
      <dc:date>2017-08-06T06:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: SLPK (LAS Dataset) in ArcGIS Runtime 100.1</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/slpk-las-dataset-in-arcgis-runtime-100-1/m-p/220786#M2644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jack,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Scene layers from SLPKs that contain 3D objects or an&amp;nbsp;integrated mesh are supported for use in Runtime 100.1.&amp;nbsp;&amp;nbsp;Use of point clouds in a SLPK is not supported yet.&amp;nbsp; It will be supported in an upcoming release.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Aug 2017 01:17:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/slpk-las-dataset-in-arcgis-runtime-100-1/m-p/220786#M2644</guid>
      <dc:creator>RexHansen</dc:creator>
      <dc:date>2017-08-22T01:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: SLPK (LAS Dataset) in ArcGIS Runtime 100.1</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/slpk-las-dataset-in-arcgis-runtime-100-1/m-p/220787#M2645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please can you tell me if we can display ArcGISSceneLayers using .SLPK with lite license (arcGIS for developer program) ? how about to edit the scene Layers precisely &amp;nbsp;create new 3DFeature ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Aug 2017 15:46:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/slpk-las-dataset-in-arcgis-runtime-100-1/m-p/220787#M2645</guid>
      <dc:creator>ManelKEDDAR</dc:creator>
      <dc:date>2017-08-22T15:46:59Z</dc:date>
    </item>
  </channel>
</rss>

