<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文講述在node中,使用canvas實現根據出圖範圍和級別,拼接瓦片併疊加geojson向量資料,並匯出成圖片。
通過命令npm init -y
初始化工程並新增對應的依賴,最終的package.json
檔案如下:
{ "name": "map", "version": "1.0.0", "description": "", "main": "map.js", "scripts": { "map": "node ./map.js" }, "keywords": ["canvas", "map"], "author": "lzugis<niujp08@qq.com>", "license": "ISC", "dependencies": { "canvas": "^2.9.3", "proj4": "^2.8.0", "ora": "^5.4.0" } }
canvas.js
,canvas操作工具,主要實現canvas
畫布初始化,並實現了新增圖片 、繪製點、繪製線、繪製面等方法。
const { createCanvas, loadImage } = require('canvas') class CanvasUtil { constructor(width = 1000, height = 1000) { this.canvas = createCanvas(width, height) this.ctx = this.canvas.getContext('2d') } /** * 繪製多個圖片 * @param imgsData, [{url: '', x: '', y: ''}] * @return {Promise<unknown>} */ drawImages(imgsData) { const that = this let promises = [] imgsData.forEach(data => { promises.push(new Promise(resolve => { loadImage(data.url).then(img => { resolve({ ...data, img }) }) })) }) return new Promise(resolve => { Promise.all(promises).then(imgDatas => { imgDatas.forEach(imgData => { that.drawImage(imgData.img, imgData.x, imgData.y) }) resolve(imgDatas) }) }) } /** * 繪製一張圖片 * @param image * @param x * @param y * @param width * @param height */ drawImage(image, x, y, width, height) { const that = this width = width || image.width height = height || image.height that.ctx.drawImage(image, x, y, width, height) } /** * 繪製多個點 * @param pointsData,[{type: 'circle', size: 4, x: 100, y: 100, icon: ''}] */ drawPoints(pointsData = []) { const that = this return new Promise(resolve => { let promises = [] pointsData.forEach(pointData => { that.ctx.beginPath() that.ctx.save() that.ctx.fillStyle = pointData.color || 'rgba(255, 0, 0, 1)' const type = pointData.type || 'circle' const size = pointData.size || 4 let {x, y} = pointData pointData.x = x pointData.y = y switch (type) { case "rect": { x -= size y -= size that.ctx.fillRect(x, y, size * 2, size * 2) promises.push(Promise.resolve(pointData)) break } case "circle": { that.ctx.arc(x, y, size, 0, Math.PI * 2) that.ctx.fill() promises.push(Promise.resolve(pointData)) break } case "marker": { promises.push(new Promise(resolve1 => { loadImage(pointData.icon).then(img => { const w = img.width * pointData.size const h = img.height * pointData.size x -= w / 2 y -= h / 2 that.drawImage(img, x, y, w, h) resolve(pointData) }) })) break } } that.ctx.restore() }) Promise.all(promises).then(res => { resolve({ code: '200' }) }) }) } /** * 繪製線 * @param linesData [{}] * @return {Promise<unknown>} */ drawLines(linesData) { const that = this return new Promise(resolve => { linesData.forEach(lineData => { that.ctx.beginPath() that.ctx.save() that.ctx.strokeStyle = lineData.color || 'red' that.ctx.lineWidth = lineData.width || 2 that.ctx.setLineDash(lineData.dasharray || [5, 0]); lineData.coords.forEach((coord, index) => { const [x, y] = coord index === 0 ? that.ctx.moveTo(x, y) : that.ctx.lineTo(x, y) }) that.ctx.stroke() that.ctx.restore() }) resolve({ code: '200' }) }) } /** * 繪製多邊形 * @param polygonsData * @return {Promise<unknown>} */ drawPolygons(polygonsData) { const that = this return new Promise(resolve => { polygonsData.forEach(polygonData => { that.ctx.beginPath() that.ctx.save() polygonData.coords.forEach((coord, index) => { const [x, y] = coord index === 0 ? that.ctx.moveTo(x, y) : that.ctx.lineTo(x, y) }) that.ctx.closePath() if(polygonData.isFill) { that.ctx.fillStyle = polygonData.fillStyle || 'rgba(255, 0, 0, 0.2)' that.ctx.fill() } if(polygonData.isStroke) { that.ctx.strokeStyle = polygonData.strokeStyle || 'red' that.ctx.lineWidth = polygonData.lineWidth || 2 that.ctx.setLineDash(polygonData.lineDash || [5, 0]); that.ctx.stroke() } that.ctx.restore() }) resolve({ code: '200' }) }) } /** * 獲取canvas資料 * @return {string} */ getDataUrl() { return this.canvas.toDataURL().replace(/^data:image/w+;base64,/, '') } /** * 新增標題 * @param title */ addTitle(title) { this.ctx.save() this.ctx.strokeStyle = '#fff' this.ctx.lineWidth = 3 this.ctx.fillStyle = '#fff' let x = 20, y = 20, offset = 8 let h = 32 this.ctx.font = `bold ${h}px 微軟雅黑` this.ctx.textAlign = 'left' this.ctx.textBaseline = 'top' let w = this.ctx.measureText(title).width // 外邊框 this.ctx.strokeRect(x, y, offset * 4 + w, offset * 4 + h) // 內邊框 this.ctx.strokeRect(x + offset, y + offset, offset * 2 + w, offset * 2 + h) // 文字 this.ctx.fillText(title, x + offset * 2, y + offset * 2) this.ctx.restore() } } module.exports = CanvasUtil
tile.js
,切片操作工具,提供了座標轉換的方法、獲取範圍內的切片的行列範圍、地理座標轉換為螢幕座標等方法。
const proj4 = require('proj4') const { randomNum } = require('./common') class TileUtil { constructor(tileSize = 256) { this.tileSize = tileSize this.origin = 20037508.34 this.resolutions = [] let resolution = (this.origin * 2) / this.tileSize for (let i = 0; i < 23; i++) { this.resolutions.push(resolution) resolution /= 2 } this.tileUrl = 'https://webst0{domain}.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}' } /** * 4326轉3857 * @param lonlat * @return {*} */ fromLonLat(lonlat) { return proj4('EPSG:4326', 'EPSG:3857', lonlat) } /** * 3857轉4326 * @param coords * @return {*} */ toLonLat(coords) { return proj4('EPSG:3857', 'EPSG:4326', coords) } /** * 獲取範圍內的切片的行列號的範圍 * @param zoom * @param extent * @return {number[]} */ getTilesInExtent(zoom, extent) { extent = this.getExtent(extent) const [xmin, ymin, xmax, ymax] = extent const res = this.resolutions[zoom] * 256 const xOrigin = -this.origin, yOrigin = this.origin const _xmin = Math.floor((xmin - xOrigin) / res) const _xmax = Math.ceil((xmax - xOrigin) / res) const _ymin = Math.floor((yOrigin - ymax) / res) const _ymax = Math.ceil((yOrigin - ymin) / res) return [_xmin, _ymin, _xmax, _ymax] } /** * 獲取切片地址 * @param x * @param y * @param z * @return {string} */ getTileUrl(x, y, z) { let url = this.tileUrl.replace(/{x}/g, x) url = url.replace(/{y}/g, y) url = url.replace(/{z}/g, z) return url.replace(/{domain}/g, randomNum()) } /** * 獲取切片大小 * @return {number} */ getTileSize() { return this.tileSize } /** * 地理座標轉換為螢幕座標 * @param extent * @param zoom * @param lonLat * @return {*[]} */ project(extent, zoom, lonLat) { const [xmin, ymin, xmax, ymax] = this.getTilesInExtent(zoom, extent) const res = this.resolutions[zoom] const resMap = this.tileSize * res const topLeft = [ resMap * xmin - this.origin, this.origin - resMap * ymin ] const coords = this.fromLonLat(lonLat) const x = (coords[0] - topLeft[0]) / res const y = (topLeft[1] - coords[1]) / res return [x, y] } /** * 處理四至 * @param extent * @return {*[]} */ getExtent(extent) { if(Boolean(extent)) { const min = this.fromLonLat([extent[0], extent[1]]) const max = this.fromLonLat([extent[2], extent[3]]) extent = [...min, ...max] } else { extent = [-this.origin, -this.origin, this.origin, this.origin] } return extent } /** * 判斷是否在範圍內 * @param extent * @param lonLat * @return {boolean} */ isInExtent(extent, lonLat) { const [xmin, ymin, xmax, ymax] = extent const [lon, lat] = lonLat return lon >= xmin && lon <= xmax && lat >=ymin && lat <= ymax } } module.exports = TileUtil
map.js
,實現地圖匯出,會用到前面提到的兩個工具類。
const fs = require('fs'); const ora = require('ora'); // loading const TileUtil = require('./utils/tile') const CanvasUtil = require('./utils/canvas') const spinner = ora('tile joint').start() const tileUtil = new TileUtil() const z = 5 // const extent = undefined const extent = [73.4469604492187500,6.3186411857604980,135.0858306884765625,53.5579261779785156] const [xmin, ymin, xmax, ymax] = tileUtil.getTilesInExtent(z, extent) const width = (xmax - xmin) * tileUtil.getTileSize() const height = (ymax - ymin) * tileUtil.getTileSize() const canvasUtil = new CanvasUtil(width, height) let urls = [] for(let i = xmin; i < xmax; i++) { const x = (i - xmin) * tileUtil.getTileSize() for(let j = ymin; j < ymax; j++) { const y = (j - ymin) * tileUtil.getTileSize() const url = tileUtil.getTileUrl(i, j, z) urls.push({ i, j, x, y, url }) } } // 新增點資料 function addCapitals() { let geojson = fs.readFileSync('./data/capital.json') geojson = JSON.parse(geojson) let pointsData = [] geojson.features.forEach(feature => { const coords = feature.geometry.coordinates if(!extent || tileUtil.isInExtent(extent, coords)) { const [x, y] = tileUtil.project(extent, z, coords) const { name } = feature.properties if(name === '北京') { pointsData.push({type: 'marker', size: 0.35, x, y, icon: './icons/icon-star.png'}) } else { pointsData.push({type: 'rect', size: 4, x, y, color: '#ff0'}) } } }) return canvasUtil.drawPoints(pointsData) } // 新增線資料 function addLines() { let geojson = fs.readFileSync('./data/boundry.json') geojson = JSON.parse(geojson) let linesData = [] geojson.features.forEach(feature => { const {type, coordinates} = feature.geometry if(type === 'LineString') { linesData.push({ width: 2, color: 'rgba(255,0,0,0.8)', coords: coordinates.map(coords => { return tileUtil.project(extent, z, coords) }) }) } else { coordinates.forEach(_coordinates => { linesData.push({ width: 2, color: 'rgba(255,0,0,0.8)', coords: _coordinates.map(coords => { return tileUtil.project(extent, z, coords) }) }) }) } }) return canvasUtil.drawLines(linesData) } // 新增面資料 function addPolygons() { let geojson = fs.readFileSync('./data/province.geojson') geojson = JSON.parse(geojson) let polygonsData = [] geojson.features.forEach(feature => { const { name } = feature.properties const {type, coordinates} = feature.geometry if(type === 'Polygon') { const coords = coordinates[0].map(coords => { return tileUtil.project(extent, z, coords) }) polygonsData.push({ isStroke: true, isFill: true, lineWidth: 1, lineDash: [5, 5], strokeStyle: 'rgb(240,240,240)', fillColor: 'rgba(255, 0, 0, 0.1)', coords, name }) } else { coordinates[0].forEach(_coordinates => { const coords = _coordinates.map(coords => { return tileUtil.project(extent, z, coords) }) polygonsData.push({ isStroke: true, isFill: true, lineWidth: 1, lineDash: [5, 5], strokeStyle: 'rgb(240,240,240)', fillStyle: 'rgba(255, 0, 0, 0.1)', coords, name }) }) } }) return canvasUtil.drawPolygons(polygonsData) } // 1.拼接切片,2.新增面資料,3.新增點資料,4.新增線資料,5.匯出圖片 canvasUtil.drawImages(urls).then(() => { addPolygons().then((a) => { addCapitals().then(() => { addLines().then(() => { canvasUtil.addTitle('中國省級區劃圖') let base64Data = canvasUtil.getDataUrl() let dataBuffer = Buffer.from(base64Data, 'base64') fs.writeFileSync(`./result/map${z}.png`, dataBuffer) spinner.succeed() spinner.color = 'green' }) }) }) })
本文原始碼請掃描下面二維條碼或直接前往倉庫獲取。
以上就是Node 切片拼接及地圖匯出範例詳解的詳細內容,更多關於Node 切片拼接 地圖匯出的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45