<?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: Using ArcGIS Map SDK MapView control inside of ArcGIS Pro leads to &amp;quot;Licensed for Developers Use Only&amp;quot; in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498483#M12831</link>
    <description>&lt;P&gt;More information here:&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/license-and-deployment/use-a-license-in-your-app/#how-to-use-a-license-string-in-your-app" target="_blank"&gt;https://developers.arcgis.com/net/license-and-deployment/use-a-license-in-your-app/#how-to-use-a-license-string-in-your-app&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jun 2024 17:55:31 GMT</pubDate>
    <dc:creator>ThadTilton</dc:creator>
    <dc:date>2024-06-27T17:55:31Z</dc:date>
    <item>
      <title>Using ArcGIS Map SDK MapView control inside of ArcGIS Pro leads to "Licensed for Developers Use Only"</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498198#M12826</link>
      <description>&lt;P&gt;I need to add to my ArcGIS Pro add-in a standalone map control to display in a dialog box, that is independent from the map panes.&amp;nbsp; &amp;nbsp;In the ArcMap days, I would have used the ArcEngine SDK.&amp;nbsp; &amp;nbsp;The closest thing appears to be the ArcGIS Maps SDK's, and I am using the .NET edition.&amp;nbsp; &amp;nbsp; I tried to add the API key to the module's Initialized function :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;protected override bool Initialize()&lt;BR /&gt;{&lt;BR /&gt;base.Initialize();&lt;BR /&gt;ArcGISRuntimeEnvironment.ApiKey = "MyAPIKEY";&lt;BR /&gt;&lt;BR /&gt;return true;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;and had no luck.&amp;nbsp; &amp;nbsp;I tried adding it to the constructor of the dialog box, and no luck there.&amp;nbsp; I keep getting the "Licensed for Developers Use Only" on the map.&amp;nbsp; &amp;nbsp;What am I missing here, or is it not possible to use the ArcGIS Map SDK's MapView control inside of ArcGIS Pro?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 12:04:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498198#M12826</guid>
      <dc:creator>dalguy72a</dc:creator>
      <dc:date>2024-06-27T12:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using ArcGIS Map SDK MapView control inside of ArcGIS Pro leads to "Licensed for Developers Use Only"</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498328#M12827</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;ArcGIS Pro has its own &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic12547.html" target="_self"&gt;MapControl&lt;/A&gt; which you could add to ProWindow or CustomControl. There are some samples with MapControl in &lt;A href="https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master" target="_self"&gt;ArcGIS Pro SDK community samples page&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Map-Exploration/OverviewMapControl" target="_self"&gt;OverviewMapControl&lt;/A&gt;, &lt;A href="https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Map-Exploration/MagnifierWindow" target="_self"&gt;MagnifierWindow&lt;/A&gt; and &lt;A href="https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Framework/MapControl" target="_self"&gt;MapControl&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 14:38:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498328#M12827</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2024-06-27T14:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using ArcGIS Map SDK MapView control inside of ArcGIS Pro leads to "Licensed for Developers Use Only"</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498387#M12828</link>
      <description>&lt;P&gt;To get rid of the watermark you need to call &lt;SPAN&gt;ArcGISRuntimeEnvironment.&lt;/SPAN&gt;SetLicense(licensekey).&lt;/P&gt;&lt;P&gt;The ApiKey is for accessing ArcGIS location services&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 16:01:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498387#M12828</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2024-06-27T16:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using ArcGIS Map SDK MapView control inside of ArcGIS Pro leads to "Licensed for Developers Use Only"</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498483#M12831</link>
      <description>&lt;P&gt;More information here:&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/license-and-deployment/use-a-license-in-your-app/#how-to-use-a-license-string-in-your-app" target="_blank"&gt;https://developers.arcgis.com/net/license-and-deployment/use-a-license-in-your-app/#how-to-use-a-license-string-in-your-app&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 17:55:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-arcgis-map-sdk-mapview-control-inside-of/m-p/1498483#M12831</guid>
      <dc:creator>ThadTilton</dc:creator>
      <dc:date>2024-06-27T17:55:31Z</dc:date>
    </item>
  </channel>
</rss>

