<?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 Using Raster file as baselayer in basemap and not use online basemap or offline map packs. in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327826#M3871</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we just use raster file&amp;nbsp;as baselayer in basemap instead of online or offline basemaps(topo, imagery) and still add graphics in graphics overlay of mymapview and do geometry operation on those graphics(GeometryEngine)?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2018 22:00:01 GMT</pubDate>
    <dc:creator>BikeshMaharjan1</dc:creator>
    <dc:date>2018-03-07T22:00:01Z</dc:date>
    <item>
      <title>Using Raster file as baselayer in basemap and not use online basemap or offline map packs.</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327826#M3871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we just use raster file&amp;nbsp;as baselayer in basemap instead of online or offline basemaps(topo, imagery) and still add graphics in graphics overlay of mymapview and do geometry operation on those graphics(GeometryEngine)?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2018 22:00:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327826#M3871</guid>
      <dc:creator>BikeshMaharjan1</dc:creator>
      <dc:date>2018-03-07T22:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using Raster file as baselayer in basemap and not use online basemap or offline map packs.</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327827#M3872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can. Please have a look into&amp;nbsp;&lt;A class="link-titled" href="https://github.com/Esri/arcgis-runtime-samples-dotnet/tree/master/src/WPF/ArcGISRuntime.WPF.Samples/Samples/Layers/RasterLayerFile" title="https://github.com/Esri/arcgis-runtime-samples-dotnet/tree/master/src/WPF/ArcGISRuntime.WPF.Samples/Samples/Layers/RasterLayerFile"&gt;arcgis-runtime-samples-dotnet/src/WPF/ArcGISRuntime.WPF.Samples/Samples/Layers/RasterLayerFile at master · Esri/arcgis-r…&lt;/A&gt;&amp;nbsp;&amp;nbsp;sample. Instead of creating a basemap from imagery, pass in the raster layer to the map.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 00:02:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327827#M3872</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2018-03-08T00:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using Raster file as baselayer in basemap and not use online basemap or offline map packs.</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327828#M3873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the information. However, The code still uses imagery basemap which needs online access.&lt;/P&gt;&lt;PRE class="Class Name" data-lang="ruby"&gt;Map myMap = new Map(Basemap.CreateImagery());&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 00:20:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327828#M3873</guid>
      <dc:creator>BikeshMaharjan1</dc:creator>
      <dc:date>2018-03-08T00:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using Raster file as baselayer in basemap and not use online basemap or offline map packs.</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327829#M3874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the code that uses a local raster layer as a basemap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map myMap = new Map();&lt;/P&gt;&lt;P&gt;String filepath =&amp;nbsp;"location_of_raster_file" ;&lt;/P&gt;&lt;P&gt;Raster myRasterFile = new Raster(filepath);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; RasterLayer myRasterLayer = new RasterLayer(myRasterFile);&lt;BR /&gt;await myRasterLayer.LoadAsync();&lt;/P&gt;&lt;P&gt;myMap.Basemap.BaseLayers.Add(myRasterLayer);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 00:45:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327829#M3874</guid>
      <dc:creator>NagmaYasmin</dc:creator>
      <dc:date>2018-03-08T00:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using Raster file as baselayer in basemap and not use online basemap or offline map packs.</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327830#M3875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. Does the same should work&amp;nbsp;when using Scene instead of Map?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2020 13:29:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-raster-file-as-baselayer-in-basemap-and-not/m-p/327830#M3875</guid>
      <dc:creator>VanyaIvanov</dc:creator>
      <dc:date>2020-09-23T13:29:25Z</dc:date>
    </item>
  </channel>
</rss>

