Referencing the ArcGIS API for JavaScript
To begin working with the ArcGIS API for JavaScript you need to add references to the style sheet and API. In the Sandbox the following lines of code have been added inside the <head> tag:
<link rel="stylesheet" > ... <script src="https://js.arcgis.com/3.21/"></script>
The <script> tag loads the ArcGIS API for JavaScript. At the time of this writing the version is currently 3.21. When new versions of the API are released you'll want to update this number accordingly. The <link> tag loads the esri.css style sheet which contains styles specific to ESRI widgets and components.
Optionally, you can include a reference to one of the style sheets for a Dojo dijit theme. The ArcGIS API for JavaScript is built directly on the Dojo JavaScript framework. Dojo comes with four pre-defined themes that control the look of user interface widgets that are added to your application: claro, tundra, soria, and nihilo. In the following code example we are referencing the claro theme:
<link rel="stylesheet" >
The other available style sheets can be referenced as seen in the following code example. You don't have to use any of these style sheets, but if you intend to add Dojo user interface components (dijit) then you'll want to load a corresponding style sheet to control the styling of those components:
<link rel="stylesheet" > <link rel="stylesheet" > <link rel="stylesheet" >
The Dojo Toolkit provides a theme tester that you can use to get a feel for how each of the themes affect the display of the user interface components. The theme tester is located at https://archive.dojotoolkit.org/nightly/dojotoolkit/dijit/themes/themeTester.html:

- Testing with JUnit
- Moodle Administration Essentials
- Vue.js前端開發基礎與項目實戰
- Java程序設計與計算思維
- 精通Python自然語言處理
- 算法訓練營:提高篇(全彩版)
- WebRTC技術詳解:從0到1構建多人視頻會議系統
- Symfony2 Essentials
- Hands-On Reinforcement Learning with Python
- jQuery Mobile移動應用開發實戰(第3版)
- 從Power BI到Analysis Services:企業級數據分析實戰
- 愛上C語言:C KISS
- 絕密原型檔案:看看專業產品經理的原型是什么樣
- Learning ROS for Robotics Programming
- Java EE 程序設計