<?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 How to increase Zoom in level? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56255#M4924</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have map containing plus and minus buttons for zooming.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When pressing plus button, it zooms into a certain level, and pressing again will further zoom into the map.&lt;/P&gt;&lt;P&gt;But I would like to increase the zoom in level more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could I increase it? Do I need to control it by using Arcmap tool? or should I need to write a java script code to increase the zoom in level of map?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2018 11:16:15 GMT</pubDate>
    <dc:creator>MuhammadHammad</dc:creator>
    <dc:date>2018-08-28T11:16:15Z</dc:date>
    <item>
      <title>How to increase Zoom in level?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56255#M4924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have map containing plus and minus buttons for zooming.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When pressing plus button, it zooms into a certain level, and pressing again will further zoom into the map.&lt;/P&gt;&lt;P&gt;But I would like to increase the zoom in level more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could I increase it? Do I need to control it by using Arcmap tool? or should I need to write a java script code to increase the zoom in level of map?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 11:16:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56255#M4924</guid>
      <dc:creator>MuhammadHammad</dc:creator>
      <dc:date>2018-08-28T11:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase Zoom in level?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56256#M4925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Muhammad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The ability to zoom in and out is controlled by the LODs (Levels of Display) that you basemap contains So if you are using one of esri basemaps like the Streets basemap then you have 24 LODs ranging from scales&amp;nbsp;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;5.91657527591555E8 (world view) to&amp;nbsp;&lt;SPAN&gt;70.5310735 (street level detail). So adding the ability to zoom in further will involve adding more LODs to your map object (but that does not mean that the basemap will draw at those scales as it has not been cached for those). You can add LODs to your map object in the maps constructor:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; lods &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="string token"&gt;"level"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="string token"&gt;"resolution"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.43402777777777773&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="string token"&gt;"scale"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;500&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="string token"&gt;"level"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="string token"&gt;"resolution"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.8680555555555555&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="string token"&gt;"scale"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1000&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;

&amp;nbsp;&amp;nbsp;&amp;nbsp; map &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;Map&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"map"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lods&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; lods&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;/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;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:08:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56256#M4925</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T22:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase Zoom in level?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56257#M4926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Thanks Robert for your reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;I would like to ask that by using LOD, I can be able to see a map at level 7, but for other levels I can see a empty back ground. Why is this happened?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;&lt;IMG alt="" class="image-1 jive-image" height="316" src="https://community.esri.com/legacyfs/online/420712_map.png" width="440" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Secondly, as you mentioned scales between&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color: black; background: white; font-size: 11.5pt;"&gt;5.91657527591555E8 (world view) to&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: none windowtext 1.0pt; padding: 0in; color: black; font-size: 11.0pt;"&gt;70.5310735 (street level detail). Why are you using 500 and 1000 values in scale variable. Finally, what is the meaning of resolution variable in the code?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="border: none windowtext 1.0pt; padding: 0in; color: black; font-size: 11.0pt;"&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="border: none windowtext 1.0pt; padding: 0in; color: black; font-size: 11.0pt;"&gt;Please let me know about it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="border: none windowtext 1.0pt; padding: 0in; color: black; font-size: 11.0pt;"&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;I am using the following code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in 0in 0.0001pt; padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;var lods = [{&lt;BR /&gt; "level": 0,&lt;BR /&gt; "resolution": 0.43402777777777773,&lt;BR /&gt; "scale": 500&lt;BR /&gt; }, {&lt;BR /&gt; "level": 1,&lt;BR /&gt; "resolution": 0.8680555555555555,&lt;BR /&gt; "scale": 1000&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 2,&lt;BR /&gt; "resolution": 1.302,&lt;BR /&gt; "scale": 1500&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 3,&lt;BR /&gt; "resolution": 1.736108,&lt;BR /&gt; "scale": 2000&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 4,&lt;BR /&gt; "resolution": 2.17013577,&lt;BR /&gt; "scale": 2500&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 5,&lt;BR /&gt; "resolution": 2.60416,&lt;BR /&gt; "scale": 3000&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 6,&lt;BR /&gt; "resolution": 3.0382,&lt;BR /&gt; "scale": 3500&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 7,&lt;BR /&gt; "resolution": 3.472218,&lt;BR /&gt; "scale": 4000&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 8,&lt;BR /&gt; "resolution": 3.90624,&lt;BR /&gt; "scale": 4500&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 9,&lt;BR /&gt; "resolution": 4.34027357,&lt;BR /&gt; "scale": 5000&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "level": 10,&lt;BR /&gt; "resolution": 4.77430127,&lt;BR /&gt; "scale": 5500&lt;BR /&gt; }];&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2018 06:34:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56257#M4926</guid>
      <dc:creator>MuhammadHammad</dc:creator>
      <dc:date>2018-08-29T06:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase Zoom in level?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56258#M4927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Muhammed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;So my first question is what are you using as your maps basemap? Is it a custom tiled layer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My example of 500 and 1000 scale is just me not wanting to take the time to type the actual numbers for the scale. If you are using esri basemaps then the scales and resolutions are predetermined and if you want to add more scales then they have to be half of the previous scale (if trying to get a more zoomed in scale) or twice the last scale (if trying to increase).&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;Resolution in map units of each pixel in a tile for each level.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The LODs you define have to match the scales your tiled basemap service is set to.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2018 12:52:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56258#M4927</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-08-29T12:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase Zoom in level?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56259#M4928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am&amp;nbsp;using "myDelorme" as basemap. I am new in GIS, can you please confirm about where can I define LODs in service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following is the image of scale settings appear in Arcmap. Do I need to define scales and then use those exact values such as 400, 500, 1000 etc&amp;nbsp; in "lod" variable at&amp;nbsp;javascript file? and where can I get resolution values from service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/420778_scale.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly, there are settings appeared in the Layer properties-&amp;gt;Source tab as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;Scale_Factor: 0.99960000&lt;BR /&gt;Latitude_Of_Origin: 0.00000000&lt;BR /&gt;Linear Unit: Meter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I need to consider them? Please let me know about it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2018 08:17:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56259#M4928</guid>
      <dc:creator>MuhammadHammad</dc:creator>
      <dc:date>2018-08-30T08:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase Zoom in level?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56260#M4929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Muhammad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;If you are using the esri Delorme base map them the tiling scheme can be found here (i.e scales and resolutions)&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://services.arcgisonline.com/arcgis/rest/services/Specialty/DeLorme_World_Base_Map/MapServer" title="http://services.arcgisonline.com/arcgis/rest/services/Specialty/DeLorme_World_Base_Map/MapServer"&gt;Specialty/DeLorme_World_Base_Map (MapServer)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only way you can define even scales like you have 400, 500, 1000, etc is if you are actually creating and hosting your own tiled (cached) MapService on your ArcGIS Server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2018 12:42:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56260#M4929</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-08-30T12:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase Zoom in level?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56261#M4930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert for your response,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please guide me how can "C&lt;SPAN style="background-color: #ffffff;"&gt;reate and host my own tiled (cached) MapService on my ArcGIS Server" in order to increase Zoom in level? Is there any demo available?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Sep 2018 06:32:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56261#M4930</guid>
      <dc:creator>MuhammadHammad</dc:creator>
      <dc:date>2018-09-02T06:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase Zoom in level?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56262#M4931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Muhammad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a&amp;nbsp;tutorial&amp;nbsp;link on doing that:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://enterprise.arcgis.com/en/server/latest/get-started/windows/tutorial-creating-a-cached-map-service.htm" title="http://enterprise.arcgis.com/en/server/latest/get-started/windows/tutorial-creating-a-cached-map-service.htm"&gt;Tutorial: Creating a cached map service—Documentation | ArcGIS Enterprise&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Sep 2018 20:39:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-increase-zoom-in-level/m-p/56262#M4931</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-09-02T20:39:36Z</dc:date>
    </item>
  </channel>
</rss>

