<?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: Vector Tile Server World Imagery (WGS84) v2 in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1147245#M76462</link>
    <description>&lt;P&gt;Not sure what you mean by the service url is broken.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can do this the following to achieve what you are asking in 3.38&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var tiled = new ArcGISTiledMapServiceLayer("https://wi.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer");
map.addLayer(tiled);
          
var vtl = new VectorTileLayer("https://www.arcgis.com/sharing/rest/content/items/a70340a048224752915ddbed9d2101a7/resources/styles/root.json");
map.addLayer(vtl);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Feb 2022 21:17:08 GMT</pubDate>
    <dc:creator>UndralBatsukh</dc:creator>
    <dc:date>2022-02-23T21:17:08Z</dc:date>
    <item>
      <title>Vector Tile Server World Imagery (WGS84) v2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1146384#M76421</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have been tasked with figuring out how to add the new Vector Tile Layers (WGS84 - v2) to our JavaScript API map app.&lt;/P&gt;&lt;P&gt;I cannot figure out how to add the World Imagery vector map.&lt;BR /&gt;&lt;A href="https://www.arcgis.com/home/item.html?id=898f58f2ee824b3c97bae0698563a4b3" target="_blank" rel="noopener"&gt;https://www.arcgis.com/home/item.html?id=898f58f2ee824b3c97bae0698563a4b3&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The below works; I was able to load the World_Basemap_GCS_v2 map:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var vtlayer = new VectorTileLayer("https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_GCS_v2/VectorTileServer");&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I cannot figure out what the magic key word is for the World Imagery basemap?&lt;/P&gt;&lt;P&gt;I cannot find anyway to see what&amp;nbsp; basemaps are available on the vector tile server either.&amp;nbsp; Or maybe it is just not possible to load the newer World Imagery WGS84 vector basemap using the JavaScript API??&lt;/P&gt;&lt;P&gt;If anyone can help me find the correct URL or let me know it is just not possible, it would be greatly appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks,&amp;nbsp;&amp;nbsp;&lt;BR /&gt;~AJ&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 09:08:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1146384#M76421</guid>
      <dc:creator>AJThomas</dc:creator>
      <dc:date>2022-02-22T09:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Vector Tile Server World Imagery (WGS84) v2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1146661#M76430</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;This item is NOT a VectorTileLayer:&amp;nbsp;&lt;A href="https://www.arcgis.com/home/item.html?id=898f58f2ee824b3c97bae0698563a4b3" target="_blank"&gt;https://www.arcgis.com/home/item.html?id=898f58f2ee824b3c97bae0698563a4b3&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you scroll down on the description page, you will see the URL to the service:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-02-22 at 12.02.26 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34661i708652876178D7D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2022-02-22 at 12.02.26 PM.png" alt="Screen Shot 2022-02-22 at 12.02.26 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;As you can see this a cached map service and you need to use &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-TileLayer.html" target="_self"&gt;TileLayer&lt;/A&gt; to add this your map.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const tiledLayer = new TileLayer({
  url: "https://wi.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer"
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 20:04:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1146661#M76430</guid>
      <dc:creator>UndralBatsukh</dc:creator>
      <dc:date>2022-02-22T20:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Vector Tile Server World Imagery (WGS84) v2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1147113#M76453</link>
      <description>&lt;P&gt;Undral,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks! I did not realize it was a different type of layer.&lt;/P&gt;&lt;P&gt;Ultimately my goal is to load the World Imagery (WGS84) and add the vector layer&amp;nbsp;&lt;A href="https://www.arcgis.com/home/item.html?id=a70340a048224752915ddbed9d2101a7#" target="_blank" rel="noopener"&gt;Hybrid Reference Layer (WGS84)&lt;/A&gt;&amp;nbsp;over the top of it, using the JavaScript API 3.38.&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the service links at the bottom of the World Imagery (WGS84) page seem to be broken. They only give me errors. The comments at the bottom of the page suggest that others have had this problem also.&lt;/P&gt;&lt;P&gt;-------------------------&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Broken-World-Imagery-Links.png" style="width: 472px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34778i3444B2748F7BDB9D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Broken-World-Imagery-Links.png" alt="Broken-World-Imagery-Links.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;-------------------------&lt;/P&gt;&lt;P&gt;If possible, can you give me a url that works and the type of layer to use for the JavaScript API 3.38.&lt;/P&gt;&lt;P&gt;I don't have access to the TileLayer type but I have had some success with using the&amp;nbsp;ArcGISTiledMapServiceLayer.&amp;nbsp; Will this work?&lt;/P&gt;&lt;P&gt;Please let me know if you can help me or if I should open a new question.&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;~AJ&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 18:07:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1147113#M76453</guid>
      <dc:creator>AJThomas</dc:creator>
      <dc:date>2022-02-23T18:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Vector Tile Server World Imagery (WGS84) v2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1147245#M76462</link>
      <description>&lt;P&gt;Not sure what you mean by the service url is broken.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can do this the following to achieve what you are asking in 3.38&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var tiled = new ArcGISTiledMapServiceLayer("https://wi.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer");
map.addLayer(tiled);
          
var vtl = new VectorTileLayer("https://www.arcgis.com/sharing/rest/content/items/a70340a048224752915ddbed9d2101a7/resources/styles/root.json");
map.addLayer(vtl);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 21:17:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1147245#M76462</guid>
      <dc:creator>UndralBatsukh</dc:creator>
      <dc:date>2022-02-23T21:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Vector Tile Server World Imagery (WGS84) v2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1149363#M76541</link>
      <description>&lt;P&gt;Undral,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks soooo much!&amp;nbsp; It worked perfectly!&lt;/P&gt;&lt;P&gt;What I meant by url is broken is that when I tried to put the link for World Imagery into the browser it would give me a 404 error,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"The requested URL /ssldir/rest/services/World_Imagery/MapServer was not found on this server."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm all straightened out now, thanks again.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;~AJ&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 23:08:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/vector-tile-server-world-imagery-wgs84-v2/m-p/1149363#M76541</guid>
      <dc:creator>AJThomas</dc:creator>
      <dc:date>2022-03-01T23:08:50Z</dc:date>
    </item>
  </channel>
</rss>

