Esri / esri-leaflet-doc

Documentation, API Reference and Samples
https://esri.github.io/esri-leaflet/
Apache License 2.0
81 stars 1.13k forks source link

link to tutorials on developers.arcgis.com #315

Closed gavinr closed 3 years ago

gavinr commented 3 years ago

I realized that we don't currently link to the new, useful tutorials that live on developers.arcgis.com. This PR adds links to those tutorials.


In case we ever need it again, I ran this script in the browser developer tools on this page to get the list of links:

links = [...document.querySelectorAll(".tree-nav-module--tree--1aZMW li a")];
str = links.map((node) => {
  return `<a href="${node.href}">${node.innerHTML}</a>`;
}).join('\n');
console.log(str);