-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在新增工廠時顯示地號圖層 #96
Comments
new ol.layer.Tile({
name: 'DMAPS',
title: '地籍圖(僅供參考)',
type: 'overlay',
opacity: 1.0,
visible: false,
source: new ol.source.WMTS({
url:
'https://landmaps.nlsc.gov.tw/S_Maps/wmts/DMAPS/default/EPSG:3857/{TileMatrix}/{TileRow}/{TileCol}',
layer: 'DMAPS',
requestEncoding: 'REST',
matrixSet: 'GoogleMapsCompatible',
format: 'image/png',
transparente: true,
projection: projection,
tileGrid: new ol.tilegrid.WMTS({
origin: ol.extent.getTopLeft(projectionExtent),
matrixIds: matrixIds,
resolutions: resolutions,
}),
style: 'default',
maxZoom: 21,
}),
}); |
國土測繪雲 QA https://maps.nlsc.gov.tw/MbIndex_qryPage.action?fun=5
|
related #104 |
用 proxy request 暫時可行,不過能不能這樣用需要諮詢 😨 const express = require('express');
const createProxyMiddleware = require('http-proxy-middleware');
const app = express();
app.use('/maps', createProxyMiddleware({
target: 'https://landmaps.nlsc.gov.tw',
changeOrigin: true,
pathRewrite: {
'^/maps': ''
},
headers: {
Referer: 'https://maps.nlsc.gov.tw/'
},
onProxyRes: function (proxyRes, req, res) {
proxyRes.headers['Access-Control-Allow-Origin'] = '*';
}
}));
app.listen(8888); |
Lines 59 to 77 in aaa3ba7
想到操作 tile map image pixel 是否也算重置範疇,需要一起考量 😂 (動搖專案本) |
這個我應該要去諮詢NLSC是嗎XD |
MOI_WFS_001地籍圖WFS |
另一個方法可以從 Ronny 的 API 拿到地段範圍,並繪製於目前座標的圖層上
不過 1. 的 easymap 現在在後端是 async job,是否要開個 API、是否會增加後端負擔、速度表現,可能都需要再想想 |
Ronny 的 API 有點歷史了,所以很多新的地號會找不到資料,現在也在苦惱那些找不到的該怎麼辦 XD |
The text was updated successfully, but these errors were encountered: