<?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: leaflet wms map image in Open Source Mapping Libraries Ques.</title>
    <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1107368#M79</link>
    <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Thu, 14 Oct 2021 00:49:54 GMT</pubDate>
    <dc:creator>BradSkopyk</dc:creator>
    <dc:date>2021-10-14T00:49:54Z</dc:date>
    <item>
      <title>leaflet wms map image</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1106229#M75</link>
      <description>&lt;P&gt;I am new to Leaflet. I have a historical map that I have georectified and that is hosted on my arcgis server. I am including both the REST and WMS URLs:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://elcamaleon.binghamton.edu/server/rest/services/Teo1925/MapServer" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;https://elcamaleon.binghamton.edu/server/rest/services/Teo1925/MapServer&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://elcamaleon.binghamton.edu/server/services/Teo1925/MapServer/WMSServer" target="_blank" rel="noopener"&gt;https://elcamaleon.binghamton.edu/server/services/Teo1925/MapServer/WMSServer&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to know which of the esri-leaflet plugins I should use:&amp;nbsp;L.esri.ImageMapLayer or&amp;nbsp;L.esri.DynamicMapLayer or something else. And, how would I format the html script.&lt;/P&gt;
&lt;P&gt;Thank you for your help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 20:12:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1106229#M75</guid>
      <dc:creator>BradSkopyk</dc:creator>
      <dc:date>2023-08-25T20:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: leaflet wms map image</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1106234#M76</link>
      <description>&lt;P&gt;I figured it out! Here is the html:&lt;/P&gt;&lt;P&gt;&amp;lt;meta charset="utf-8"&amp;gt;&amp;lt;meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;!-- Load Leaflet from CDN --&amp;gt;&lt;BR /&gt;&amp;lt;link crossorigin="" href="&lt;A href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" target="_blank"&gt;https://unpkg.com/leaflet@1.7.1/dist/leaflet.css&lt;/A&gt;" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" rel="stylesheet" /&amp;gt;&amp;lt;script src="&lt;A href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js" target="_blank"&gt;https://unpkg.com/leaflet@1.7.1/dist/leaflet.js&lt;/A&gt;"&lt;BR /&gt;integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="&lt;BR /&gt;crossorigin=""&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;!-- Load Esri Leaflet from CDN --&amp;gt;&amp;lt;script src="&lt;A href="https://unpkg.com/esri-leaflet@3.0.0/dist/esri-leaflet.js" target="_blank"&gt;https://unpkg.com/esri-leaflet@3.0.0/dist/esri-leaflet.js&lt;/A&gt;"&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;script src="&lt;A href="https://unpkg.com/esri-leaflet-vector@3.0.0/dist/esri-leaflet-vector.js" target="_blank"&gt;https://unpkg.com/esri-leaflet-vector@3.0.0/dist/esri-leaflet-vector.js&lt;/A&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;style type="text/css"&amp;gt;body { margin:0; padding:0; }&lt;BR /&gt;#map {&lt;BR /&gt;position: absolute;&lt;BR /&gt;top:0;&lt;BR /&gt;bottom:0;&lt;BR /&gt;right:0;&lt;BR /&gt;left:0;&lt;BR /&gt;font-family: Arial, Helvetica, sans-serif;&lt;BR /&gt;font-size: 14px;&lt;BR /&gt;color: #323232;&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/style&amp;gt;&lt;BR /&gt;&amp;lt;div id="map"&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;script&amp;gt;&lt;/P&gt;&lt;P&gt;const apiKey = "Put API Key here";&lt;BR /&gt;var map = L.map('map').setView([19.65, -98.9], 12);&lt;BR /&gt;L.esri.basemapLayer('Imagery').addTo(map);&lt;/P&gt;&lt;P&gt;var url = '&lt;A href="https://elcamaleon.binghamton.edu/server/rest/services/Teo1925/MapServer" target="_blank"&gt;https://elcamaleon.binghamton.edu/server/rest/services/Teo1925/MapServer&lt;/A&gt;';&lt;/P&gt;&lt;P&gt;L.esri.dynamicMapLayer({&lt;BR /&gt;url: url,&lt;BR /&gt;opacity: 0.99,&lt;BR /&gt;useCors: false&lt;BR /&gt;}).addTo(map);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;lt;/script&amp;gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Oct 2021 17:09:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1106234#M76</guid>
      <dc:creator>BradSkopyk</dc:creator>
      <dc:date>2021-10-09T17:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: leaflet wms map image</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1107096#M77</link>
      <description>&lt;P&gt;So, actually, the first solution does not actually use a WMS layer. Any hints on how to show a wms map image with leaflet? If anyone is using Omeka, specifically the WMS Overlays function that is found in some of the preconfigured mapping blocks, like Map by Attachments. Here, you would configure as:&lt;/P&gt;&lt;P&gt;Base URL:&amp;nbsp;&lt;A href="https://elcamaleon.binghamton.edu/server/services/Teo1925/MapServer/WMSServer" target="_blank"&gt;https://elcamaleon.binghamton.edu/server/services/Teo1925/MapServer/WMSServer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Layers: 0 [i.e. zero]&lt;/P&gt;</description>
      <pubDate>Wed, 13 Oct 2021 15:04:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1107096#M77</guid>
      <dc:creator>BradSkopyk</dc:creator>
      <dc:date>2021-10-13T15:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: leaflet wms map image</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1107245#M78</link>
      <description>&lt;P&gt;You can use "L.tilelayer.wms" - see the tutorial on the Leaflet documentation site:&lt;/P&gt;&lt;P&gt;&lt;A href="https://leafletjs.com/examples/wms/wms.html" target="_blank"&gt;https://leafletjs.com/examples/wms/wms.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's a code sample using your service:&lt;/P&gt;&lt;P&gt;&lt;A href="https://jsbin.com/tuhukamefu/1/edit?html,output" target="_blank"&gt;https://jsbin.com/tuhukamefu/1/edit?html,output&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Oct 2021 18:30:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1107245#M78</guid>
      <dc:creator>GavinRehkemper</dc:creator>
      <dc:date>2021-10-13T18:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: leaflet wms map image</title>
      <link>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1107368#M79</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 14 Oct 2021 00:49:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/open-source-mapping-libraries-ques/leaflet-wms-map-image/m-p/1107368#M79</guid>
      <dc:creator>BradSkopyk</dc:creator>
      <dc:date>2021-10-14T00:49:54Z</dc:date>
    </item>
  </channel>
</rss>

