<?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: Why Bing map shows only 19 level of details only ? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-bing-map-shows-only-19-level-of-details-only/m-p/691140#M64320</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;in my testing at &lt;/SPAN&gt;&lt;A href="http://binged.it/15UmXdg" rel="nofollow noopener noreferrer" target="_blank"&gt;bing.com/maps&lt;/A&gt;&lt;SPAN&gt; i've never been able to identify more than 20 levels of detail, and only in specific areas where data is available (for example at the corner of E79th St and 5th Ave in NYC).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in order to push this additional level of detail to a Bing layer in the Esri JS API, you have to do something like this...&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
dojo.connect(veTileLayer, "onLoad", function() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("ve: ", veTileLayer);
&amp;nbsp;&amp;nbsp;&amp;nbsp; veTileLayer.tileInfo.lods.push(new esri.layers.LOD({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; level":20,"resolution":0.149291071,"scale":564.248588,"startTileRow":0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "startTileCol":0,"endTileRow":1048575,"endTileCol":1048575
&amp;nbsp;&amp;nbsp;&amp;nbsp; }));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; veTileLayer.scales.push(564.248588);
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addLayer(veTileLayer);

&amp;nbsp; });
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 05:05:12 GMT</pubDate>
    <dc:creator>JohnGravois</dc:creator>
    <dc:date>2021-12-12T05:05:12Z</dc:date>
    <item>
      <title>Why Bing map shows only 19 level of details only ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-bing-map-shows-only-19-level-of-details-only/m-p/691139#M64319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Why Bing map when added through ArcGIS Javascript API shows only 19 levels of details, whereas in this link &lt;/SPAN&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/bb259689.aspx"&gt;http://msdn.microsoft.com/en-us/library/bb259689.aspx&lt;/A&gt;&lt;SPAN&gt; it shows that there are 23 level of details in Bing map tile system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there any specific reason for this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Vinay Bansal&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 May 2013 11:46:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-bing-map-shows-only-19-level-of-details-only/m-p/691139#M64319</guid>
      <dc:creator>VinayBansal</dc:creator>
      <dc:date>2013-05-10T11:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Why Bing map shows only 19 level of details only ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-bing-map-shows-only-19-level-of-details-only/m-p/691140#M64320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;in my testing at &lt;/SPAN&gt;&lt;A href="http://binged.it/15UmXdg" rel="nofollow noopener noreferrer" target="_blank"&gt;bing.com/maps&lt;/A&gt;&lt;SPAN&gt; i've never been able to identify more than 20 levels of detail, and only in specific areas where data is available (for example at the corner of E79th St and 5th Ave in NYC).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in order to push this additional level of detail to a Bing layer in the Esri JS API, you have to do something like this...&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
dojo.connect(veTileLayer, "onLoad", function() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("ve: ", veTileLayer);
&amp;nbsp;&amp;nbsp;&amp;nbsp; veTileLayer.tileInfo.lods.push(new esri.layers.LOD({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; level":20,"resolution":0.149291071,"scale":564.248588,"startTileRow":0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "startTileCol":0,"endTileRow":1048575,"endTileCol":1048575
&amp;nbsp;&amp;nbsp;&amp;nbsp; }));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; veTileLayer.scales.push(564.248588);
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addLayer(veTileLayer);

&amp;nbsp; });
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:05:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/why-bing-map-shows-only-19-level-of-details-only/m-p/691140#M64320</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2021-12-12T05:05:12Z</dc:date>
    </item>
  </channel>
</rss>

