【问题原因】面数据集为文件型工作空间,文件型数据源,面数据集与 arcgis 瓦片的比例尺不一致,需要在加载的时候定义为瓦片的比例尺
【解决办法】参考下方代码加载
var map =L.map('map',{
crs:L.Proj.CRS('EPSG:4490',{
def:'+proj=longlat +ellps=GRS80 +no_defs +type=crs',
bounds:L.bounds([-180,-90],[180,90]),
origin:L.point(-180,90),
dpi: 96,
scales: [xxx,xxx,xxx]
}),
center:[23,116],
maxZoom:25,
zoom
})