<?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 Create a zoom in zoom out and a full screen icon and add functionality to these icons on a map in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/create-a-zoom-in-zoom-out-and-a-full-screen-icon/m-p/1330500#M82254</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicrosoftTeams-image (4).png" style="width: 178px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81174i4BFA91F6439DF24E/image-size/large?v=v2&amp;amp;px=999" role="button" title="MicrosoftTeams-image (4).png" alt="MicrosoftTeams-image (4).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to create the same showing on above image with the functionality also in arcgis api using javascript ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help me in that , i'm new to this ,please provide me any reference also if posible.&lt;/P&gt;</description>
    <pubDate>Wed, 20 Sep 2023 07:15:04 GMT</pubDate>
    <dc:creator>kumarprince8071</dc:creator>
    <dc:date>2023-09-20T07:15:04Z</dc:date>
    <item>
      <title>Create a zoom in zoom out and a full screen icon and add functionality to these icons on a map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/create-a-zoom-in-zoom-out-and-a-full-screen-icon/m-p/1330500#M82254</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicrosoftTeams-image (4).png" style="width: 178px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81174i4BFA91F6439DF24E/image-size/large?v=v2&amp;amp;px=999" role="button" title="MicrosoftTeams-image (4).png" alt="MicrosoftTeams-image (4).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to create the same showing on above image with the functionality also in arcgis api using javascript ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help me in that , i'm new to this ,please provide me any reference also if posible.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 07:15:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/create-a-zoom-in-zoom-out-and-a-full-screen-icon/m-p/1330500#M82254</guid>
      <dc:creator>kumarprince8071</dc:creator>
      <dc:date>2023-09-20T07:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create a zoom in zoom out and a full screen icon and add functionality to these icons on a map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/create-a-zoom-in-zoom-out-and-a-full-screen-icon/m-p/1330723#M82262</link>
      <description>&lt;P&gt;I created my own custom Zoom buttons this way with JS and some html/css..&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;document&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;getElementById&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"zoominbtn"&lt;/SPAN&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;SPAN&gt;addEventListener&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'click'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;function&lt;/SPAN&gt;&lt;SPAN&gt;(){&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;console&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;log&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"zoom in"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;n&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;view&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;zoom&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;view&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;zoom&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;n&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; });&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;document&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;getElementById&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"zoomoutbtn"&lt;/SPAN&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;SPAN&gt;addEventListener&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'click'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;function&lt;/SPAN&gt;&lt;SPAN&gt;(){&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;console&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;log&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"zoom out"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;n&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;view&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;zoom&lt;/SPAN&gt; &lt;SPAN&gt;-&lt;/SPAN&gt; &lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;view&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;zoom&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;n&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; });&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 17:27:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/create-a-zoom-in-zoom-out-and-a-full-screen-icon/m-p/1330723#M82262</guid>
      <dc:creator>Paco</dc:creator>
      <dc:date>2023-09-20T17:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create a zoom in zoom out and a full screen icon and add functionality to these icons on a map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/create-a-zoom-in-zoom-out-and-a-full-screen-icon/m-p/1330731#M82263</link>
      <description>&lt;P&gt;The Zoom and Fullscreen widgets will get the functionality you are looking for. If you want to style them in the same way as the picture it will take some additional work. (ESRI won't help you trying to make your map look like Google.)&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Zoom.html" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Zoom.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Fullscreen.html" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Fullscreen.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 17:37:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/create-a-zoom-in-zoom-out-and-a-full-screen-icon/m-p/1330731#M82263</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-09-20T17:37:52Z</dc:date>
    </item>
  </channel>
</rss>

