AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
官方示例:https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=widgets-basemapgallery ![](https://box.kancloud.cn/9334d164e7e908d3fad58aaf57e3d0c2_542x453.jpg) ``` require([ 'esri/Map', 'esri/views/MapView', 'esri/widgets/BasemapGallery' ], function(Map, MapView, BasemapGallery) { var map = new Map({ basemap: 'streets' }); var mapView = new MapView({ map: map, center: [102.9331224074, 25.1049040686], zoom: 13, container: 'js_map' }); var basemapGallery = new BasemapGallery({ view: mapView }); mapView.ui.add(basemapGallery, { position: "top-right" }); }); ```