<?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: can not create ENC chart in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164832#M7357</link>
    <description>&lt;P&gt;right now all I'm trying to do is to display data from a standard NOAA set. &amp;nbsp;I downloaded the PNW region and so far I'm not using any of my own data. &amp;nbsp;I *think* you already answered my question as once I could go offline thinks seem to be working better. It does still take a while to come up, like 15 seconds but once the map is up, it's up and works well (I'm running on a M1 MacBook not an iOS device).&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;As I have it now, I think all is working except getting a point off the chart. I.e. I would like to be able to get the latitude/longitude/scale of the center of the current viewport, and to be able to translate a mouse position to a latitude longitude. &amp;nbsp;I don't expect you to fix this for me but can you please point me to the correct place in the docs. &amp;nbsp;AGSMapView.currentViewportWithType is not it. &amp;nbsp;(I know everyone learns in different ways but for me, the docs are very confusing).&lt;/P&gt;</description>
    <pubDate>Fri, 15 Apr 2022 17:40:18 GMT</pubDate>
    <dc:creator>neddyseagoon</dc:creator>
    <dc:date>2022-04-15T17:40:18Z</dc:date>
    <item>
      <title>can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164271#M7350</link>
      <description>&lt;P&gt;Brand new to ArcGIS, and I'm trying to create an iOS app to display a nautical chart. &amp;nbsp;I can display a regular chart, I've downloaded a data set, and it's copied to my apps sandboxed documents directory. &amp;nbsp;However, when I try and load it, the datasets are empty. &amp;nbsp;I copied the code from the website -- as shown below. &amp;nbsp;Any help would be greatly appreciated (the dummy string was to simply ensure the correct location is used -- the files are verified present)&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;let&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt; dummy = &lt;/SPAN&gt;"/Users/XXX/Library/Containers/D72BE5E6-A3C3-4718-ADA5-10E2B435BBEB/Data/Documents/ENC_ROOT/CATALOG.031"&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;let&lt;/STRONG&gt;&lt;/SPAN&gt; catalogURL&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;= &lt;SPAN&gt;URL&lt;/SPAN&gt;( &lt;SPAN&gt;fileURLWithPath&lt;/SPAN&gt;: dummy &lt;SPAN&gt;/*catalogFile*/&lt;/SPAN&gt; )&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;self&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;SPAN&gt;encExchangeSet&lt;/SPAN&gt; = AGSENCExchangeSet(fileURLs: [catalogURL])&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;self&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;SPAN&gt;encExchangeSet&lt;/SPAN&gt;?.&lt;SPAN&gt;load&lt;/SPAN&gt; { [&lt;SPAN&gt;&lt;STRONG&gt;weak&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN&gt;&lt;STRONG&gt;self&lt;/STRONG&gt;&lt;/SPAN&gt;] (error) &lt;SPAN&gt;&lt;STRONG&gt;in&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN&gt;&lt;STRONG&gt;let&lt;/STRONG&gt;&lt;/SPAN&gt; error = error {&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;"Error loading exchange dataset &lt;SPAN&gt;\(error.&lt;/SPAN&gt;&lt;SPAN&gt;localizedDescription&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;"&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;return&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;self&lt;/STRONG&gt;&lt;/SPAN&gt;?.&lt;SPAN&gt;encExchangeSet&lt;/SPAN&gt;?.datasets.&lt;SPAN&gt;forEach&lt;/SPAN&gt; {(dataset) &lt;SPAN&gt;&lt;STRONG&gt;in&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;^^^^&lt;SPAN&gt;&lt;STRONG&gt;self&lt;/STRONG&gt;&lt;/SPAN&gt;?.&lt;SPAN&gt;encExchangeSet&lt;/SPAN&gt;?.datasets is nil&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 06:55:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164271#M7350</guid>
      <dc:creator>neddyseagoon</dc:creator>
      <dc:date>2022-04-14T06:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164485#M7351</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please take a look at the attached example app - I created it based on the&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-ios/tree/main/arcgis-ios-sdk-samples/Layers/Add%20ENC%20exchange%20set" target="_self"&gt;&lt;STRONG&gt;Add ENC exchange set&lt;/STRONG&gt;&lt;/A&gt;&amp;nbsp;sample from iOS Sample Viewer. Plug in your API key and you should be able to see a screen like this &lt;span class="lia-unicode-emoji" title=":backhand_index_pointing_down:"&gt;👇&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/38909i07D678E52C306BF5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="example.png" alt="example.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please refer to the sample for more details.&lt;/P&gt;&lt;P&gt;A few things to notice&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;ENC charts requires the hydrography dataset to display. You can download it from the link below.&lt;/LI&gt;&lt;LI&gt;S57 hydro data follows a certain folder structure, so when you include it in your project, make sure to either copy the whole folder structure, or use "Create folder references".&lt;/LI&gt;&lt;LI&gt;You'll need to set `&lt;STRONG&gt;AGSENCEnvironmentSettings&lt;/STRONG&gt;` before loading the ENC datasets. Check out the example code.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Links&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;(login required) Download hydro data for ENC charts:&amp;nbsp;&lt;A href="https://developers.arcgis.com/downloads/#hydrodata" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/downloads/#hydrodata&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;The mock data for the sample:&amp;nbsp;&lt;A href="https://www.arcgis.com/home/item.html?id=9d2987a825c646468b3ce7512fb76e2d" target="_blank" rel="noopener"&gt;https://www.arcgis.com/home/item.html?id=9d2987a825c646468b3ce7512fb76e2d&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;The sample page:&amp;nbsp;&lt;A href="https://developers.arcgis.com/ios/swift/sample-code/add-enc-exchange-set/" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/ios/swift/sample-code/add-enc-exchange-set/&lt;/A&gt;&amp;nbsp;and on GitHub&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-ios/tree/main/arcgis-ios-sdk-samples/Layers/Add%20ENC%20exchange%20set" target="_blank" rel="noopener"&gt;https://github.com/Esri/arcgis-runtime-samples-ios/tree/main/arcgis-ios-sdk-samples/Layers/Add%20ENC%20exchange%20set&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Hope it helps! Let me know if you have further questions, or accept this answer as a solution.&lt;/P&gt;&lt;P&gt;Ting&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 17:30:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164485#M7351</guid>
      <dc:creator>Ting</dc:creator>
      <dc:date>2022-04-14T17:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164667#M7352</link>
      <description>&lt;P&gt;this is great, thank you. &amp;nbsp;However, why is the app trying to get online if the ENC files are in the bundle. This is really important as I'm often offline when the boat is moving&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 00:57:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164667#M7352</guid>
      <dc:creator>neddyseagoon</dc:creator>
      <dc:date>2022-04-15T00:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164671#M7353</link>
      <description>&lt;P&gt;So it's working for me with my down data set (pacific north west) but some of the time I only get a relief map and some times the enc chart. &amp;nbsp;This changes when I run the app not any code changes. &amp;nbsp;I also can not zoom in very much. &amp;nbsp;I do have the entire catalog ... which leads me to another question ... this section in the docs ...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ENC charts are often distributed as base cells (.000 files) with one or more update cells (.001, .002, etc. files). An exchange set can consist exclusively of update cells; in order to load an update exchange set, the path to the base exchange set must be provided along with the path to the update exchange set.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, my&amp;nbsp;files&amp;nbsp;have .000 .001 .002 etc all mixed in. &amp;nbsp;As I'm not getting zoomed in views am I doing something else wrong? &amp;nbsp;Thanks for your help, I'm not finding the&amp;nbsp;docs too clear &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 01:28:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164671#M7353</guid>
      <dc:creator>neddyseagoon</dc:creator>
      <dc:date>2022-04-15T01:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164749#M7354</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;The sample loads our global ocean bathymetry basemap for context and displays the ENC chart on top of it, hence the network connection.&lt;/P&gt;&lt;P&gt;That basemap is not necessary and the ArcGIS Runtime can work entirely offline, as you need. You could try changing line 22 in the sample to:&lt;/P&gt;&lt;LI-CODE lang="swift"&gt;mapView.map = AGSMap(spatialReference: .webMercator())&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Hope that helps!&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 14:50:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164749#M7354</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2022-04-15T14:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164750#M7355</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/578670"&gt;@neddyseagoon&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;It's hard to tell for sure without seeing your data but it's possible that you're doing everything right and the data is just configured not to be visible outside of specific scale ranges?&lt;/P&gt;&lt;P&gt;Are you able to share the data with us? Feel free to DM me if so and we can figure out the best way to get it to us.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 14:53:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164750#M7355</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2022-04-15T14:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164824#M7356</link>
      <description>&lt;P&gt;that makes a HUGE difference, thank you! &amp;nbsp;Effectively what I'm trying to do is to implement a chart plotter (more to it but that's an easy way to describe it) and being offline is extremely important. &amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 17:33:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164824#M7356</guid>
      <dc:creator>neddyseagoon</dc:creator>
      <dc:date>2022-04-15T17:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164832#M7357</link>
      <description>&lt;P&gt;right now all I'm trying to do is to display data from a standard NOAA set. &amp;nbsp;I downloaded the PNW region and so far I'm not using any of my own data. &amp;nbsp;I *think* you already answered my question as once I could go offline thinks seem to be working better. It does still take a while to come up, like 15 seconds but once the map is up, it's up and works well (I'm running on a M1 MacBook not an iOS device).&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;As I have it now, I think all is working except getting a point off the chart. I.e. I would like to be able to get the latitude/longitude/scale of the center of the current viewport, and to be able to translate a mouse position to a latitude longitude. &amp;nbsp;I don't expect you to fix this for me but can you please point me to the correct place in the docs. &amp;nbsp;AGSMapView.currentViewportWithType is not it. &amp;nbsp;(I know everyone learns in different ways but for me, the docs are very confusing).&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 17:40:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164832#M7357</guid>
      <dc:creator>neddyseagoon</dc:creator>
      <dc:date>2022-04-15T17:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164843#M7358</link>
      <description>&lt;P&gt;Take a look at the &lt;A href="https://developers.arcgis.com/ios/swift/sample-code/" target="_self"&gt;sample app&lt;/A&gt;. You can &lt;A href="https://apps.apple.com/us/app/arcgis-runtime-sdk-samples/id1180714771" target="_self"&gt;download it form the App Store&lt;/A&gt; and explore capabilities. Each sample shows the code behind directly in the app, but it's also available on &lt;A href="https://github.com/Esri/arcgis-runtime-samples-ios" target="_self"&gt;GitHub&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;But if you're looking to track the current centerpoint of the map display, you can use&amp;nbsp;&lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_geo_view.html#a72b7ece42ca17eaa0c00bbcac3520058" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;AGSMapView.viewpointChangedHandler&lt;/STRONG&gt;&lt;/A&gt;. You would then want to call &lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_geo_view.html#a8b4778a06f1278e65c3842ec2a636a8c" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;AGSMapView.currentViewpointWithType()&lt;/STRONG&gt;&lt;/A&gt; and pass in &lt;A href="https://developers.arcgis.com/ios/api-reference/_a_g_s_viewpoint_8h.html#acb981fdfb99862d46b30d62c2f604717" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;.centerAndScale&lt;/STRONG&gt;&lt;/A&gt; as the type. You'll get an &lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_viewpoint.html" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;AGSViewpoint&lt;/STRONG&gt;&lt;/A&gt; back, and look at the &lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_viewpoint.html#adb856be20977cf16f25b2a1d89a5ced0" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;targetGeometry&lt;/STRONG&gt;&lt;/A&gt;. It'll be an &lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_point.html" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;AGSPoint&lt;/STRONG&gt;&lt;/A&gt; that's the center of the map (you'll have to cast to AGSPoint).&lt;/P&gt;&lt;P&gt;The point's coordinates will be in the spatial reference of the map (in this case Web Mercator) which is probably not what you want to output. You'd need to project it to WGS84. We also have a &lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_coordinate_formatter.html" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;AGSCoordinateFormatter&lt;/STRONG&gt;&lt;/A&gt; class that can help.&lt;/P&gt;&lt;P&gt;See this code for an example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="swift"&gt;mapView.viewpointChangedHandler = { [weak self] in
    guard let self = self else { return }
    
    if let center = self.mapView.currentViewpoint(with: .centerAndScale)?.targetGeometry as? AGSPoint {
        // Format the Lat Lon etc. using a standard format
        if let latLonString = AGSCoordinateFormatter.latitudeLongitudeString(from: center, format: .degreesMinutesSeconds, decimalPlaces: 1) {
            print(latLonString)
        }
        
        // Get the coordinates manually…
        if let wgs84center = AGSGeometryEngine.projectGeometry(center, to: .wgs84()) as? AGSPoint {
            print("Lat \(wgs84center.y), Lon \(wgs84center.x)")
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That will output something like this to the Xcode console…&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;19 56 53.8N 100 32 17.0W&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lat 19.948264571145458, Lon -100.53804579499798&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;19 58 51.9N 100 42 37.8W&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lat 19.98109671769453, Lon -100.71050437417519&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;20 00 03.9N 100 48 55.8W&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lat 20.001080434190495, Lon -100.81549113806531&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;20 00 25.0N 100 50 46.6W&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lat 20.006942571870393, Lon -100.84629108361138&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;20 00 25.0N 100 50 46.7W&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lat 20.006942719211626, Lon -100.84629185776355&lt;/STRONG&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Please note that ENC layers&amp;nbsp;&lt;A href="https://developers.arcgis.com/ios/license-and-deployment/license/#licensing-capabilities" target="_blank" rel="noopener"&gt;require a Runtime Standard License&lt;/A&gt;&amp;nbsp;when you're ready to deploy your app.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 18:07:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164843#M7358</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2022-04-15T18:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164845#M7359</link>
      <description>&lt;P&gt;judicious use of the debugger helped me find how to get the center of the view (close enough anyway &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ). &amp;nbsp; Still can't figure out why it takes so long to render though&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 18:09:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164845#M7359</guid>
      <dc:creator>neddyseagoon</dc:creator>
      <dc:date>2022-04-15T18:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164863#M7360</link>
      <description>&lt;P&gt;Hmmm. We've taken a look and PNW does seem abnormally slow. We'll have to take a look.&lt;/P&gt;&lt;P&gt;Thanks for reporting that.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 18:58:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164863#M7360</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2022-04-15T18:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164866#M7361</link>
      <description>&lt;P&gt;From an initial look, could you turn off the &lt;STRONG&gt;&lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_e_n_c_viewing_group_settings.html#abd31cc8a1b39d49a29fec3f7668bf7e5" target="_self"&gt;spotSoundings&lt;/A&gt;&lt;/STRONG&gt; and let us know if that helps? They seem to be slowing things down (we'll have to look into why). Once they're off, does panning/zooming behave any differently?&lt;/P&gt;&lt;P&gt;You should be able to get to that through the shared AGSENCEnvironmentSettings…&lt;/P&gt;&lt;LI-CODE lang="swift"&gt;AGSENCEnvironmentSettings.shared().displaySettings.viewingGroupSettings.spotSoundings = false&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 15 Apr 2022 19:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164866#M7361</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2022-04-15T19:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: can not create ENC chart</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164989#M7366</link>
      <description>&lt;P&gt;this is excellent, thank you. &amp;nbsp;Do you have any ideas why it takes so long to load the map? (online or offline)&lt;/P&gt;</description>
      <pubDate>Sun, 17 Apr 2022 03:42:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/can-not-create-enc-chart/m-p/1164989#M7366</guid>
      <dc:creator>neddyseagoon</dc:creator>
      <dc:date>2022-04-17T03:42:35Z</dc:date>
    </item>
  </channel>
</rss>

