載入 ESRI CSS
從 ArcGIS API for JavaScript 3.2 版開始,開發人員必須包含一個額外的級聯樣式表(CSS)檔案:esri.css。
該檔案的 URL 是:
// versions 3.11 and forward
<link rel="stylesheet" href="https://js.arcgis.com/API-VERSION/esri/css/esri.css">
// versions prior to 3.11
<link rel="stylesheet" href="https://js.arcgis.com/API-VERSION/js/esri/css/esri.css">
例如,這個 CSS 檔案將通過連結標記包含在內:
<link rel="stylesheet" href="https://js.arcgis.com/3.19/esri/css/esri.css">
esri.css 檔案包含各種小部件的 CSS,包括地圖的 CSS。
因為所有 CSS 都在一個檔案中,所以檢索 API 的 CSS 是在一個請求中完成的。減少 http 請求的數量是應用程式提高效能的一種方式。