1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
| import Map from 'ol/Map.js'; import Projection from 'ol/proj/Projection.js'; import TileLayer from 'ol/layer/Tile.js'; import TileWMS from 'ol/source/TileWMS.js'; import View from 'ol/View.js'; import {ScaleLine, defaults as defaultControls} from 'ol/control.js'; import { addCoordinateTransforms, addProjection, transform, } from 'ol/proj.js';
const projection = new Projection({ code: 'EPSG:21781', extent: [485869.5728, 76443.1884, 837076.5648, 299941.7864], units: 'm', }); addProjection(projection);
addCoordinateTransforms( 'EPSG:4326', projection, function (coordinate) { return [ WGStoCHy(coordinate[1], coordinate[0]), WGStoCHx(coordinate[1], coordinate[0]), ]; }, function (coordinate) { return [ CHtoWGSlng(coordinate[0], coordinate[1]), CHtoWGSlat(coordinate[0], coordinate[1]), ]; } );
const extent = [420000, 30000, 900000, 350000]; const layers = [ new TileLayer({ extent: extent, source: new TileWMS({ url: 'https://wms.geo.admin.ch/', crossOrigin: 'anonymous', attributions: '© <a href="https://shop.swisstopo.admin.ch/en/products/maps/national/lk1000"' + 'target="_blank">Pixelmap 1:1000000 / geo.admin.ch</a>', params: { 'LAYERS': 'ch.swisstopo.pixelkarte-farbe-pk1000.noscale', 'FORMAT': 'image/jpeg', }, serverType: 'mapserver', }), }), new TileLayer({ extent: extent, source: new TileWMS({ url: 'https://wms.geo.admin.ch/', crossOrigin: 'anonymous', attributions: '© <a href="https://www.hydrodaten.admin.ch/en/notes-on-the-flood-alert-maps.html"' + 'target="_blank">Flood Alert / geo.admin.ch</a>', params: {'LAYERS': 'ch.bafu.hydroweb-warnkarte_national'}, serverType: 'mapserver', }), }), ];
const map = new Map({ controls: defaultControls().extend([ new ScaleLine({ units: 'metric', }), ]), layers: layers, target: 'map', view: new View({ projection: projection, center: transform([8.23, 46.86], 'EPSG:4326', 'EPSG:21781'), extent: extent, zoom: 2, }), });
function WGStoCHy(lat, lng) { lat = DECtoSEX(lat); lng = DECtoSEX(lng);
lat = DEGtoSEC(lat); lng = DEGtoSEC(lng);
const lat_aux = (lat - 169028.66) / 10000; const lng_aux = (lng - 26782.5) / 10000;
const y = 600072.37 + 211455.93 * lng_aux - 10938.51 * lng_aux * lat_aux - 0.36 * lng_aux * Math.pow(lat_aux, 2) - 44.54 * Math.pow(lng_aux, 3);
return y; }
function WGStoCHx(lat, lng) { lat = DECtoSEX(lat); lng = DECtoSEX(lng);
lat = DEGtoSEC(lat); lng = DEGtoSEC(lng);
const lat_aux = (lat - 169028.66) / 10000; const lng_aux = (lng - 26782.5) / 10000;
const x = 200147.07 + 308807.95 * lat_aux + 3745.25 * Math.pow(lng_aux, 2) + 76.63 * Math.pow(lat_aux, 2) - 194.56 * Math.pow(lng_aux, 2) * lat_aux + 119.79 * Math.pow(lat_aux, 3);
return x; }
function CHtoWGSlat(y, x) { const y_aux = (y - 600000) / 1000000; const x_aux = (x - 200000) / 1000000;
let lat = 16.9023892 + 3.238272 * x_aux - 0.270978 * Math.pow(y_aux, 2) - 0.002528 * Math.pow(x_aux, 2) - 0.0447 * Math.pow(y_aux, 2) * x_aux - 0.014 * Math.pow(x_aux, 3);
lat = (lat * 100) / 36;
return lat; }
function CHtoWGSlng(y, x) { const y_aux = (y - 600000) / 1000000; const x_aux = (x - 200000) / 1000000;
let lng = 2.6779094 + 4.728982 * y_aux + 0.791484 * y_aux * x_aux + 0.1306 * y_aux * Math.pow(x_aux, 2) - 0.0436 * Math.pow(y_aux, 3);
lng = (lng * 100) / 36;
return lng; }
function DECtoSEX(angle) { const deg = parseInt(angle, 10); const min = parseInt((angle - deg) * 60, 10); const sec = ((angle - deg) * 60 - min) * 60;
return deg + min / 100 + sec / 10000; }
function DEGtoSEC(angle) { const deg = parseInt(angle, 10); let min = parseInt((angle - deg) * 100, 10); let sec = ((angle - deg) * 100 - min) * 100;
const parts = String(angle).split('.'); if (parts.length == 2 && parts[1].length == 2) { min = Number(parts[1]); sec = 0; }
return sec + min * 60 + deg * 3600; }
|