互联网底图在线地址

一、高德底图
http://wprd0{1-4}.is.autonavi.com/appmaptile?x={x}&y={y}&z={z}&lang=zh_cn&size=1&scl=1&style=7 为矢量图(含路网、含注记)
http://wprd0{1-4}.is.autonavi.com/appmaptile?x={x}&y={y}&z={z}&lang=zh_cn&size=1&scl=2&style=7 为矢量图(含路网,不含注记)
http://wprd0{1-4}.is.autonavi.com/appmaptile?x={x}&y={y}&z={z}&lang=zh_cn&size=1&scl=1&style=6 为影像底图(不含路网,不含注记)
http://wprd0{1-4}.is.autonavi.com/appmaptile?x={x}&y={y}&z={z}&lang=zh_cn&size=1&scl=2&style=6 为影像底图(不含路网、不含注记)
http://wprd0{1-4}.is.autonavi.com/appmaptile?x={x}&y={y}&z={z}&lang=zh_cn&size=1&scl=1&style=8 为影像路图(含路网,含注记)
http://wprd0{1-4}.is.autonavi.com/appmaptile?x={x}&y={y}&z={z}&lang=zh_cn&size=1&scl=2&style=8 为影像路网(含路网,不含注记)
高德实时路况:

let timeKey = new Date().getTime();
let gaodeMapLayerRoad = new Tile({
  source: new XYZ({
  url:'http://tm.amap.com/trafficengine/mapabc/traffictile?v=1.0&;t=1&x={x}&y={y}&z={z}&&t='+timeKey
     })
   });

return gaodeMapLayerRoad;
二、谷歌底图
1、无偏移的底图:http://www.google.cn/maps/vt?lyrs=s@800&x={x}&y={y}&z={z}
2、底图无偏移,注记有偏移 :http://www.google.cn/maps/vt/lyrs=y@142&hl=zh-CN&gl=cn&x={x}&y={y}&z={z}&s=Galil。
发现网上的无偏移的谷歌地图大部分都是底图无偏移而注记有偏移的,二者放到一起就很尴尬,这是历史遗留问题,谷歌中国的注记是使用的高德提供的数据。

你可能感兴趣的:(GIS)