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:

- UI設(shè)計(jì)基礎(chǔ)培訓(xùn)教程
- Java程序設(shè)計(jì)(慕課版)
- Cocos2D-X權(quán)威指南(第2版)
- CockroachDB權(quán)威指南
- Python數(shù)據(jù)可視化:基于Bokeh的可視化繪圖
- 垃圾回收的算法與實(shí)現(xiàn)
- Learning ArcGIS Pro 2
- 程序員數(shù)學(xué):用Python學(xué)透線性代數(shù)和微積分
- oreilly精品圖書(shū):軟件開(kāi)發(fā)者路線圖叢書(shū)(共8冊(cè))
- 程序是怎樣跑起來(lái)的(第3版)
- Service Mesh實(shí)戰(zhàn):基于Linkerd和Kubernetes的微服務(wù)實(shí)踐
- Julia for Data Science
- INSTANT Silverlight 5 Animation
- 深入分析GCC
- Java 9 with JShell