当前位置: 首页> 教育> 高考 > 鄂州是哪个省_物流公司网页设计_推广渠道平台_app推广平台有哪些

鄂州是哪个省_物流公司网页设计_推广渠道平台_app推广平台有哪些

时间:2025/8/3 14:11:37来源:https://blog.csdn.net/gislaozhang/article/details/144854782 浏览次数:0次
鄂州是哪个省_物流公司网页设计_推广渠道平台_app推广平台有哪些

注意mapview的center属性和tilelayer.fullExtent的区别。

前者是设置mapview显示的中心点坐标,

 const view = new MapView({
                container: "viewDiv",
                map: map,
                center:[100,25]
            });

后者是读取服务本身的四至范围,如果服务本身四至范围很大,例如下图fullExtent是全球范围,服务展示的地图内容区域很小,例如initialExtent范围很小,会存在浏览地图视图时很难找到服务内容的情况。

 如果栅格切片服务研究区很小,建议使用center属性来控制显示位置。

如下:

<html><head><meta charset="utf-8" /><meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /><title>Intro to layers | Sample | ArcGIS API for JavaScript 4.22</title><link rel="stylesheet" href="https://js.arcgis.com/4.22/esri/themes/light/main.css" /><script src="https://js.arcgis.com/4.22/"></script><style>html,body,#viewDiv {padding: 0;margin: 0;height: 100%;width: 100%;}#layerToggle {top: 20px;right: 20px;position: absolute;z-index: 99;background-color: white;border-radius: 8px;padding: 10px;opacity: 0.75;}</style><script>require(["esri/Map", "esri/views/MapView", "esri/layers/TileLayer", "esri/Basemap", "esri/layers/MapImageLayer"], (Map,MapView,TileLayer,Basemap,MapImageLayer) => {const tilelayer = new TileLayer({url: "https://******/server/rest/services/demo/MapServer",// This property can be used to uniquely identify the layer});let basemap = new Basemap({baseLayers: tilelayer});const map = new Map({basemap: basemap,});// map.add(layer);const view = new MapView({container: "viewDiv",map: map,center:[100,25]});/****************************************************************** Layers are promises that resolve when loaded, or when all their* properties may be accessed. Once the population layer has loaded,* the view will animate to it's initial extent.*****************************************************************//*   view.when(() => {tilelayer.when(() => {view.goTo(tilelayer.fullExtent).catch((error) => {console.error(error);});});});*/});</script>
</head><body><div id="viewDiv"></div></body></html>

关键字:鄂州是哪个省_物流公司网页设计_推广渠道平台_app推广平台有哪些

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: