免费地图资源(持续更新)

GISer们在构建GIS应用时,常需要各种GIS数据,地形、影像、行政区划、道路、POI数据等等,我将平时的地图下载渠道、地图服务地址等罗列出来,供GISer们使用。

在线的地图下载:

http://www.gscloud.cn/

http://www.tianditu.com/service/query.html


在线的地图服务:

http://services.arcgisonline.com/arcgis/rest/services

https://www.geoq.cn/basemap.html

深色地图

http://map.geoq.cn/arcgis/rest/services/ChinaOnlineStreetPurplishBlue/MapServer


OL代码:

 baseLayers: [  
          {
              layerName: 'vector',
              isDefault: true,
              layerType: 'TileXYZ',
              layerUrl: 'http://map.geoq.cn/arcgis/rest/services/ChinaOnlineStreetPurplishBlue/MapServer'
          }
        ]

天地图

http://t3.tianditu.com/DataServer?T=vec_w&x={x}&y={y}&l={z}


OL代码

var layer = new ol.layer.Tile({
            title: "航班",
            source: new ol.source.XYZ({
                url: "http://t3.tianditu.com/DataServer?T=vec_w&x={x}&y={y}&l={z}"
            })
        });
        map.addLayer(layer);

4个GeoQ不同颜色的版本

经典彩色版:"http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineCommunity/MapServer",
国际英文版:"http://map.geoq.cn/arcgis/rest/services/ChinaOnlineCommunityENG/MapServer",
低调灰色版:"http://map.geoq.cn/arcgis/rest/services/ChinaOnlineStreetGray/MapServer",
典雅蓝黑版:"http://map.geoq.cn/arcgis/rest/services/ChinaOnlineStreetPurplishBlue/MapServer"


地图下载器软件:

太乐地图下载器 http://www.arctiler.com




猜你喜欢

转载自blog.csdn.net/GIS_Lyn/article/details/80603193