GIS开发之二维地下管线综合管理系统(Arcgis)第四节 使用arcgis api for js 加载天地图

本文介绍了如何使用ArcGIS API for JS加载天地图的切片地图,包括核心js文件的定义和调用方式,以及获取天地图KEY的步骤。教程详细讲解了TiledMapServiceLayer的配置,并提供了调用示例。

GIS开发之二维地下管线综合管理系统(Arcgis)第四节 使用arcgis api for js 加载天地图

核心js文件

#通过定义加载天地图js文件,引用并组织天地图的切片,
天地图的切片地图可以通过esri.layers.TiledMapServiceLayer来加载,如下:
define([“dojo/_base/declare”,
“esri/layers/tiled”],
function (declare) {
return declare(esri.layers.TiledMapServiceLayer, {
constructor: function () {
this.spatialReference = new esri.SpatialReference({ wkid: 4326 });
this.initialExtent = (this.fullExtent = new esri.geometry.Extent(-180.0, -90.0, 180.0, 90.0, this.spatialReference));
this.tileInfo = new esri.layers.TileInfo({
“rows”: 256,
“cols”: 256,
“compressionQuality”: 0,
“origin”: {
“x”: -180,
“y”: 90
},
“spatialReference”: {
“wkid”: 4326
},
“lods”: [
{ “level”: 2, “resolution”: 0.3515625, “scale”: 147748796.52937502 },
{ “level”: 3, “resolution”: 0.17578125, “scale”: 73874398.264687508 },
{ “level”: 4, “resolution”: 0.087890625, “scale”: 36937199.132343754 },
{ “level”: 5, “resolution”: 0.0439453125, “scale”: 18468599.566171877 },
{ “level”: 6, “resolution”: 0.02197265625, “scale”: 9234299.7830859385 },
{ “level”: 7, “resolution”: 0.010986328125, “scale”: 4617149.8915429693 },
{ “level”: 8, “resolution”: 0.0054931640625, “scale”: 2308574.9457714846 },
{ “level”: 9, “resolution”: 0.00274658203125, “scale”: 1154287.4728857423 },
{ “level”: 10, “resolution”: 0.001373291015625, “scale”: 577143.73644287116 },
{ “level”: 11, “resolution”: 0.0006866455078125, “scale”: 288571.86822143558 },
{ “level”: 12, “resolution”: 0.00034332275390625, “scale”: 144285.93411071779 },
{ “level”: 13, “resolution”: 0.000171661376953125, “scale”: 72142.967055358895 },
{ “level”: 14, “resolution”: 8.58306884765625e-005, “scale”: 36071.483527679447 },
{ “level”: 15, “resolution”: 4.291534423828125e-005, “scale”: 18035.741763839724 },
{ “level”: 16, “resolution”: 2.1457672119140625e-005, “scale”: 9017.8708819198619 },
{ “level”: 17, “resolution”: 1.0728836059570313e-005, “scale”: 4508.9354409599309 },
{ “level”: 18, “resolution”: 5.3644180297851563e-006, “scale”: 2254.4677204799655 }
]
});
this.loaded = true;
this.onLoad(this);
},
getTileUrl: function (level, row, col) {
return “http://t” + col % 8 + “.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&TILEMATRIX=” + level + “&TILEROW=” + row + “&TILECOL=” + col + “&FORMAT=tiles”;
}
});
});

现阶段天地图需要KEY的引用采用加载成功,请移步天地图网站注册并申请KEY,即可。

调用方式

第一步require引用文件
在这里插入图片描述
第二步引用并加载
在这里插入图片描述

调用结果

在这里插入图片描述
关注以下公众号,及时发布各种技术交流。
在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值