<?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: Is it possible to open a local Scene Layer Package (slpk) with the runtime? in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387090#M4582</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share what's in your scene layer package and how you created it? There&amp;nbsp;are some&amp;nbsp;layers that can go in a scene layer package that the runtime doesn't support as of yet. I suspect unsupported package contents is the case for you, but I would have expected a useful exception message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Oct 2018 22:01:00 GMT</pubDate>
    <dc:creator>GregDeStigter</dc:creator>
    <dc:date>2018-10-23T22:01:00Z</dc:date>
    <item>
      <title>Is it possible to open a local Scene Layer Package (slpk) with the runtime?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387087#M4579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to develop some code that I can use to open a local SLPK with the Runtime and I have not found much sample code. I've used the MobileMapPackage class to open an MMPK, but I have not found a comparable class for SceneLayerPackage, or something similar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? Is this possible at this point?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mike...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 20:09:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387087#M4579</guid>
      <dc:creator>MichaelHamsa</dc:creator>
      <dc:date>2018-10-12T20:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a local Scene Layer Package (slpk) with the runtime?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387088#M4580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to open an *.slpk file directly with&amp;nbsp;&lt;STRONG&gt;ArcGISSceneLayer&lt;/STRONG&gt; like the following:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; sceneLayer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;ArcGISSceneLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Uri&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;@"C:\temp\Test.slpk"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;await&lt;/SPAN&gt; sceneLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;LoadAsync&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; scene &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Scene&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Basemap&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;CreateImagery&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; InitialViewpoint &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Viewpoint&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;sceneLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;FullExtent&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
scene&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;OperationalLayers&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;sceneLayer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
MySceneView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Scene &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; scene&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;If the layer fails to load you can check &lt;STRONG&gt;ArcGISSceneLayer.LoadError&lt;/STRONG&gt; for the reason.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:46:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387088#M4580</guid>
      <dc:creator>GregDeStigter</dc:creator>
      <dc:date>2021-12-11T17:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a local Scene Layer Package (slpk) with the runtime?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387089#M4581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information. I finally got back around to trying this out today. When I call LoadAsync on the ArcGISSceneLayer, the LoadStatus of the layer is set to FailedToLoad and the LoadError is null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Mike Hamsa&lt;/P&gt;&lt;P&gt;Chief Technology Officer - GeoSpatial Innovations, Inc.&lt;/P&gt;&lt;P&gt;P: 512-982-6735&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 21:00:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387089#M4581</guid>
      <dc:creator>MichaelHamsa</dc:creator>
      <dc:date>2018-10-18T21:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a local Scene Layer Package (slpk) with the runtime?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387090#M4582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share what's in your scene layer package and how you created it? There&amp;nbsp;are some&amp;nbsp;layers that can go in a scene layer package that the runtime doesn't support as of yet. I suspect unsupported package contents is the case for you, but I would have expected a useful exception message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2018 22:01:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387090#M4582</guid>
      <dc:creator>GregDeStigter</dc:creator>
      <dc:date>2018-10-23T22:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a local Scene Layer Package (slpk) with the runtime?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387091#M4583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeah, I have a feeling that’s what it is as well. We’ve got a point cloud layer in that SLPK, and after looking around a little, that ma not be supported yet in the Runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you think that may be the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mike Hamsa&lt;/P&gt;&lt;P&gt;Chief Technology Officer - GeoSpatial Innovations, Inc.&lt;/P&gt;&lt;P&gt;P: 512-982-6735&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2018 16:30:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387091#M4583</guid>
      <dc:creator>MichaelHamsa</dc:creator>
      <dc:date>2018-10-26T16:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a local Scene Layer Package (slpk) with the runtime?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387092#M4584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, that's the problem. Point cloud scene layers are not currently supported by the Runtime. They are&amp;nbsp;on the docket for the next release&amp;nbsp;- if all goes well. I'll check the exception message and see if we can&amp;nbsp;give a less confusing&amp;nbsp;experience for unsupported scene layers like this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2018 16:58:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387092#M4584</guid>
      <dc:creator>GregDeStigter</dc:creator>
      <dc:date>2018-10-26T16:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to open a local Scene Layer Package (slpk) with the runtime?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387093#M4585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Greg – that’s exactly what I needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike Hamsa&lt;/P&gt;&lt;P&gt;Chief Technology Officer - GeoSpatial Innovations, Inc.&lt;/P&gt;&lt;P&gt;P: 512-982-6735&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2018 21:20:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/is-it-possible-to-open-a-local-scene-layer-package/m-p/387093#M4585</guid>
      <dc:creator>MichaelHamsa</dc:creator>
      <dc:date>2018-10-26T21:20:34Z</dc:date>
    </item>
  </channel>
</rss>

