<?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: Overlay georeferenced image with ArcGIS javascript 4.6 in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727340#M67509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...appreciate it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Fri, Feb 23, 2018 at 3:20 PM, Robert Scheitlin, GISP &amp;lt;geonet@esri.com&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Feb 2018 22:32:19 GMT</pubDate>
    <dc:creator>ChadKahler</dc:creator>
    <dc:date>2018-02-23T22:32:19Z</dc:date>
    <item>
      <title>Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727331#M67500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With ArcGIS Javascript v3.x you could use a combination of MapImage and MapImageLayer to overlay a georeferenced image on the map.&amp;nbsp; It&amp;nbsp;appears that&amp;nbsp;the MapImageLayer functionality has changed&amp;nbsp;in the 4.6 Javascript API, so is there a workaround available for georeferenced images until the old v3.x functionality of the MapImageLayer is implemented?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 17:08:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727331#M67500</guid>
      <dc:creator>ChadKahler</dc:creator>
      <dc:date>2018-02-23T17:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727332#M67501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, once you have your mapView set up in your js file, you just need to add the correct require&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="string token"&gt;"esri/layers/MapImageLayer"&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and alias&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;MapImageLayer&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;and then set up a var for the MapImageLayer and add it to your maps layers:&lt;/P&gt;&lt;P&gt;&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; image &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;MapImageLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
 url&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fgem.edcgov.us%2Farcgis%2Frest%2Fservices%2Fsurface%2FAerials_2011_mercator_WAB%2FMapServer" target="_blank"&gt;http://gem.edcgov.us/arcgis/rest/services/surface/Aerials_2011_mercator_WAB/MapServer&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&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;
 &lt;SPAN class="comment token"&gt;/*add the layers!*/&lt;/SPAN&gt;
 map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;addMany&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;lyrUtilBnds&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; lyrEnvBnds&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; lyrFacBnds&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; lyrMobBnds&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; image&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="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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;not really a workaround per say, it's just the way it works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:06:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727332#M67501</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2021-12-12T07:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727333#M67502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I think you mis-read the post he is asking about adding a georeferenced image to the map in 4.x&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:24:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727333#M67502</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-02-23T21:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727334#M67503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, I don't think I understand what he's asking then.&amp;nbsp; But other than adding a map image layer or an image service layer, how else would you add an image to a map?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:31:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727334#M67503</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2018-02-23T21:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727335#M67504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just the way he said back in 3.x API. The MapImageLayer was for just that back then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:32:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727335#M67504</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-02-23T21:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727336#M67505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah I missed something in his question then.&amp;nbsp; In looking at 4.x, it looks like some of the old 3.x MapImage properties are now incorporated into the 4.x MapImageLayer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:41:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727336#M67505</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2018-02-23T21:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727337#M67506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H4 class="" style="color: #4d4d4d; background-color: #fefefe; font-weight: bold; font-size: 1.286em; margin: 1em 0px 0.5em;"&gt;&lt;/H4&gt;&lt;H4 class="" style="color: #4d4d4d; background-color: #fefefe; font-weight: bold; font-size: 1.286em; margin: 1em 0px 0.5em;"&gt;3.x&lt;/H4&gt;&lt;H4 class="" style="color: #4d4d4d; background-color: #fefefe; font-weight: bold; font-size: 1.286em; margin: 1em 0px 0.5em;"&gt;Description&lt;/H4&gt;&lt;DIV class="" style="color: #4d4d4d; background-color: white; padding: 0.2em 0px;"&gt;&lt;DIV style="padding-bottom: 0.5em;"&gt;&lt;EM&gt;(Added at v2.4)&lt;/EM&gt;&lt;/DIV&gt;The MapImageLayer class is used to add georeferenced images to the map. The map will place the georeferenced images at the specified geographic extent. The extent of the image should be within the map's extent. The image should also be in the same coordinate system as the map.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:43:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727337#M67506</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-02-23T21:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727338#M67507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for the feedback!&amp;nbsp; I probably should have been more specific.&amp;nbsp; I have utilized the MapImageLayer functionality in 3.x for overlaying a local georeferenced image with success, but I noticed that same functionality doesn't exist yet in 4.x.&amp;nbsp; According to the ESRI functionality matrix the 3.x MapImageLayer has not been implemented in 4.x, since the 4.x MapImageLayer actually is a conversion of the 3.x ArcGISDynamicMapServiceLayer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I guess the main question that I was asking if anyone had figured out a workaround to achieve the 3.x MapImageLayer functionality utilizing the 4.x version of the API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps I just need to be patient for the next release!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 22:17:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727338#M67507</guid>
      <dc:creator>ChadKahler</dc:creator>
      <dc:date>2018-02-23T22:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727339#M67508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I have not seen any info on the port over of the capability to use a georeferenced image in 4.x yet. I will ask next month at the Dev Summit though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 22:19:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727339#M67508</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-02-23T22:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727340#M67509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...appreciate it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Fri, Feb 23, 2018 at 3:20 PM, Robert Scheitlin, GISP &amp;lt;geonet@esri.com&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 22:32:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727340#M67509</guid>
      <dc:creator>ChadKahler</dc:creator>
      <dc:date>2018-02-23T22:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727341#M67510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chad is now marked as coming some in the JS&amp;nbsp;Functionality Matrix.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/guide/functionality-matrix/index.html" title="https://developers.arcgis.com/javascript/latest/guide/functionality-matrix/index.html"&gt;Functionality matrix | ArcGIS API for JavaScript 4.6&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE style="color: #4c4c4c; background-color: #ffffff; border: 1px solid #cccccc; font-size: 0.875rem; margin-bottom: 1.55rem;"&gt;&lt;TBODY&gt;&lt;TR style="border-bottom: 1px solid #cccccc;"&gt;&lt;TD style="border-left: 1px solid #cccccc; border-right: 1px solid #cccccc; font-weight: 300; padding: 0.51667rem;"&gt;MapImageLayer&lt;/TD&gt;&lt;TD style="border-left: 1px solid #cccccc; border-right: 1px solid #cccccc; font-weight: 300; padding: 0.51667rem;"&gt;Coming soon&lt;BR /&gt;(not to be confused with the 4x MapImageLayer which is the 4x version of the 3x ArcGISDynamicMapServiceLayer)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2018 16:29:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727341#M67510</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-03-09T16:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727342#M67511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the followup...I'm looking forward to the implementation!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Fri, Mar 9, 2018 at 9:30 AM, Robert Scheitlin, GISP &amp;lt;geonet@esri.com&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2018 19:20:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/727342#M67511</guid>
      <dc:creator>ChadKahler</dc:creator>
      <dc:date>2018-03-09T19:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1063401#M73348</link>
      <description>&lt;P&gt;Looks like it is still listed as "coming soon" 3 years later.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":neutral_face:"&gt;😐&lt;/span&gt;&lt;BR /&gt;Has anyone figured out any work arounds? I'm in the middle of a 3x to 4x migration, and still trying to figure out a way (without ArcGIS Server and an image service) to add georeferenced images.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 01:12:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1063401#M73348</guid>
      <dc:creator>JeremySwagger</dc:creator>
      <dc:date>2021-06-01T01:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1065298#M73401</link>
      <description>&lt;P&gt;I am also actively on the hunt for a solution to this. It seems to me that the 4.x api lacks a way to arbitrarily place an image on a map. I've been working on using geotiff.js to parse out all the image info and try to create a graphic or symbol out of it. The hurdle I'm on now is doing something with the parsed out RGB band data...If you have come up with some kind of working solution I would be very interested in seeing it!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 20:37:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1065298#M73401</guid>
      <dc:creator>BWScientiaLLC</dc:creator>
      <dc:date>2021-06-04T20:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1076426#M73765</link>
      <description>&lt;P&gt;Try&amp;nbsp;&lt;STRONG&gt;PictureMarkerSymbol &lt;/STRONG&gt;as a workaround in 4x&lt;SPAN&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;First set up the layer:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;//Ideally, get the centroid and extent from the image&lt;BR /&gt;const point = new Point ({&lt;BR /&gt;   x: -76.490695,&lt;BR /&gt;   y: 38.9788&lt;BR /&gt;});&lt;BR /&gt;const markerExtent = {&lt;BR /&gt;   xmin: -76.492706,&lt;BR /&gt;   xmax: -76.488920,&lt;BR /&gt;   ymin: 38.978750,&lt;BR /&gt;   ymax: 38.980800&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;const symbolMarker = { &lt;BR /&gt;   type: "picture-marker",&lt;BR /&gt;   url: imageUrl,&lt;BR /&gt;   width: 200,&lt;BR /&gt;   height: 200&lt;BR /&gt;};&lt;BR /&gt;const graphicPoint = new Graphic({&lt;BR /&gt;   geometry: point,&lt;BR /&gt;   symbol: symbolMarker&lt;BR /&gt;});&lt;BR /&gt;const targetLayer = new GraphicsLayer({&lt;BR /&gt;   graphics: [graphicPoint]&lt;BR /&gt;});&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;After adding that layer to the mapView, listen for any time that the mapView extent is stationary, and recalculate the width and height of the marker symbol.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;function adjustMarker() {&lt;BR /&gt;   const topRightScreenPt = view.toScreen({ &lt;BR /&gt;      x: markerExtent.xmax, &lt;BR /&gt;      y: markerExtent.ymax, &lt;BR /&gt;      spatialReference:{&lt;BR /&gt;         wkid: 4326&lt;BR /&gt;      }&lt;BR /&gt;   });&lt;BR /&gt;   const bottomLeftScreenPt = view.toScreen({ &lt;BR /&gt;      x: markerExtent.xmin, &lt;BR /&gt;      y: markerExtent.ymin, &lt;BR /&gt;      spatialReference:{&lt;BR /&gt;         wkid: 4326&lt;BR /&gt;      }&lt;BR /&gt;   });&lt;BR /&gt;   const newWidth = Math.abs(topRightScreenPt.x - bottomLeftScreenPt.x);&lt;BR /&gt;   const newHeight = Math.abs(bottomLeftScreenPt.y - topRightScreenPt.y);&lt;BR /&gt;   targetLayer.graphics.items[0].symbol = { &lt;BR /&gt;      type: "picture-marker",&lt;BR /&gt;      url: imageUrl,&lt;BR /&gt;      width: newWidth &amp;gt; 0 ? newWidth : 1,&lt;BR /&gt;      height: newHeight &amp;gt; 0 ? newHeight : 1&lt;BR /&gt;   };&lt;BR /&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;view.watch("stationary", (newValue, oldValue) =&amp;gt; {&lt;BR /&gt;   if (newValue == true) { &lt;BR /&gt;   adjustMarker();&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Working Example&lt;/STRONG&gt;:&amp;nbsp;&lt;A href="https://codepen.io/Jswag/pen/poeZJoq" target="_blank"&gt;https://codepen.io/Jswag/pen/poeZJoq&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;In this example, I am manually setting the extent of the image, but it should be easier with a properly georeferenced image. This example includes other possibilities of using other layers, but Option 3, using PictureMarkerSymbol, seems to work the best during navigation.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jul 2021 19:00:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1076426#M73765</guid>
      <dc:creator>JeremySwagger</dc:creator>
      <dc:date>2021-07-07T19:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1092223#M74406</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/472976"&gt;@JeremySwagger&lt;/a&gt;&amp;nbsp; I was checking out your solution and noticed this seems to only work if the max width or height of the image does not exceed 500 pixels. Did you come across that same problem as well? I see the example image you used is 500x350.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 14:40:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1092223#M74406</guid>
      <dc:creator>mpianka</dc:creator>
      <dc:date>2021-08-25T14:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1092372#M74411</link>
      <description>&lt;P&gt;This was the wall I ran up against as well. It seems that a PictureMarkerSymbol has a capped size.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 18:22:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1092372#M74411</guid>
      <dc:creator>BWScientiaLLC</dc:creator>
      <dc:date>2021-08-25T18:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1099481#M74695</link>
      <description>&lt;P&gt;Yeah, there are limitations and some performance issues with using PictureMarkerSymbol as well. I ended up rendering points to a separate canvas sitting above the map div (which is a different strategy entirely). I think the 4x equivalent to 3x MapImageLayer may actually be planned in the next release though?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Sep 2021 18:05:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1099481#M74695</guid>
      <dc:creator>JeremySwagger</dc:creator>
      <dc:date>2021-09-17T18:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1179158#M77553</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/406401"&gt;@ChadKahler&lt;/a&gt;, &amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/472976"&gt;@JeremySwagger&lt;/a&gt;, &amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/489993"&gt;@BWScientiaLLC&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/432392"&gt;@mpianka&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just want to let you know we are adding support for this at 4.24. You can use MediaLayer (new at 4.24) to add static images or videos on your map. You can test it out using our next version as of today. Please check it out and if you have any questions or feedback please let me know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/feedback-js-api-next/blob/master/CHANGELOG.md" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/Esri/feedback-js-api-next/blob/master/CHANGELOG.md&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 19:01:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1179158#M77553</guid>
      <dc:creator>UndralBatsukh</dc:creator>
      <dc:date>2022-06-01T19:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay georeferenced image with ArcGIS javascript 4.6</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1179810#M77588</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/53756"&gt;@UndralBatsukh&lt;/a&gt;&amp;nbsp;Thanks! Glad to see this is officially making it into the API. I started playing around with it and the results are good so far. One question I have is do you know what the filesize limitations are? I have some high resolution imagery. The full raster is a 195 MB PNG and results in an "element cannot be displayed" error. I clipped a piece of it to make a 16 MB PNG and that one displays fine.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 14:50:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/overlay-georeferenced-image-with-arcgis-javascript/m-p/1179810#M77588</guid>
      <dc:creator>mpianka</dc:creator>
      <dc:date>2022-06-03T14:50:51Z</dc:date>
    </item>
  </channel>
</rss>

