为 map.nasdt.cn 提供高清卫星地图服务
获取指定位置的静态卫星地图图片
URL格式:
/google/staticmap?center={纬度},{经度}&zoom={缩放}&size={宽}x{高}&maptype=satellite
示例:
直接代理卫星图<img src="https://map.nasdt.cn/map?lat=39.9&lng=116.4&z=15&w=1600&h=1600&t=satellite"
alt="卫星地图"
width="1600"
height="1600">
function downloadMap(lat, lng) {
const url = `https://map.nasdt.cn/map?lat=\${lat}&lng=\${lng}&z=15&w=1600&h=1600&t=satellite`;
const link = document.createElement('a');
link.href = url;
link.download = 'satellite-map.jpg';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
地图预览区域
点击上方按钮生成地图