记录:google map加载服务
程序员文章站
2022-04-24 13:36:23
...
谷歌地图加载服务
1、
const wmsMapType = new window.google.maps.ImageMapType({
maxZoom: 18,
minZoom: 7,
name: 'TianDiTu',
tileSize: new window.google.maps.Size(256, 256),
isPng: true,
getTileUrl: (coord, zoom) => {
return `http://24j826032t.qicp.vip/arcgis/rest/services/MyMapService/MapServer/WMTS?SERVICE=WMTS&REQUEST=GetTile&TILEMATRIX=${zoom}&TILEROW=${coord.x}&TILECOL=${coord.y}`
}
})
map.overlayMapTypes.insertAt(0, wmsMapType)
// clear
上一篇: 数组(Array)
下一篇: Nginx配置中的if判断