-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use projection definition provide by server (including projection ext…
…ent) (#280) * Use crs object provide by server. In case of AddLayer register new Projection if not register on Application * Create a API_BASE_URLS constant to constant.js and add CRS url * Add case of server error request not register crs * add since tags * remove wrong version * add since version * Changes not related to the pull request. Refactoring it other pull request is better * Add missing import module Projections * Export API_BASE_URLS * Changes not related to the pull request. Refactoring it other pull request is better * Change as suggest #280 (comment) * Change as suggest #280 (comment) * Change as #280 (comment) * Add comments as suggest #280 (comment) --------- Co-authored-by: Raruto <Raruto@users.noreply.github.com>
- Loading branch information
1 parent
b8c5da0
commit 69fcc81
Showing
6 changed files
with
78 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1,54 @@ | ||
const Projection = require('g3w-ol/projection/projection'); | ||
const ADDEDPROJECTIONS = ['EPSG:4326', 'EPSG:3857']; | ||
import {API_BASE_URLS} from 'constant'; | ||
const Projection = require('./projection'); | ||
const {XHR} = require('core/utils/utils'); | ||
const {normalizeEpsg} = require('core/utils/geo'); | ||
|
||
const Projections = { | ||
|
||
/** | ||
* @since v3.8 | ||
*/ | ||
isRegistered(epsg) { | ||
return ol.proj.get(epsg); | ||
}, | ||
|
||
get(crs={}) { | ||
const cachedProjection = ADDEDPROJECTIONS.indexOf(crs.epsg) !== -1 ? ol.proj.get(crs.epsg) : null; | ||
const cachedProjection = this.isRegistered(crs.epsg); | ||
if (cachedProjection) return cachedProjection; | ||
const projection = new Projection({ | ||
crs | ||
}); | ||
ol.proj.addProjection(projection); | ||
ADDEDPROJECTIONS.push(crs.epsg); | ||
ol.proj.proj4.register(proj4); | ||
return projection; | ||
}, | ||
|
||
/** | ||
* extent get from https://epsg.io/ | ||
* Check and register epsg | ||
* | ||
* @param epsg : "EPSG:<CODE>" Ex. "EPSG:4326" | ||
* @returns {Promise<Projection>} | ||
* @since v3.8 | ||
*/ | ||
setApplicationProjections() { | ||
this.get({ | ||
epsg: "EPSG:3003", | ||
proj4: "+proj=tmerc +lat_0=0 +lon_0=9 +k=0.9996 +x_0=1500000 +y_0=0 +ellps=intl +towgs84=-104.1,-49.1,-9.9,0.971,-2.917,0.714,-11.68 +units=m +no_defs", | ||
axisinverted: false, | ||
geographic: false, | ||
extent: [1290650.93, 4190305.78, 2343702.24, 5261004.57] | ||
}); | ||
|
||
this.get({ | ||
epsg: "EPSG:3004", | ||
proj4: "+proj=tmerc +lat_0=0 +lon_0=15 +k=0.9996 +x_0=2520000 +y_0=0 +ellps=intl +towgs84=-104.1,-49.1,-9.9,0.971,-2.917,0.714,-11.68 +units=m +no_defs", | ||
axisinverted: false, | ||
geographic: false, | ||
extent: [1782205.39, 4190307.02, 2834974.5, 5250474.42] | ||
}); | ||
|
||
this.get({ | ||
epsg: "EPSG:3045", | ||
proj4:"+proj=utm +zone=33 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs", | ||
axisinverted: true, | ||
geographic: false, | ||
extent: [-2465144.8, 3638055.41, 2885759.28, 9493779.8] | ||
}); | ||
|
||
this.get({ | ||
epsg:"EPSG:6708", | ||
proj4:"+proj=utm +zone=33 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs", | ||
axisinverted: true, | ||
geographic: false, | ||
extent: [-331278.39, 3846440.97, 865258.04, 5256332.65] | ||
}); | ||
|
||
this.get({ | ||
epsg:"EPSG:32632", | ||
proj4:"+proj=utm +zone=32 +datum=WGS84 +units=m +no_defs", | ||
axisinverted: false, | ||
geographic: false, | ||
extent: [166021.44, 0.0, 833978.56, 9329005.18] | ||
}); | ||
|
||
this.get({ | ||
epsg:"EPSG:32633", | ||
proj4:"+proj=utm +zone=33 +ellps=WGS84 +datum=WGS84 +units=m +no_defs", | ||
axisinverted: false, | ||
geographic: false, | ||
extent: [166021.44, 0.0, 833978.56, 9329005.18] | ||
}); | ||
|
||
this.get({ | ||
epsg:"EPSG:32634", | ||
proj4:"+proj=utm +zone=34 +datum=WGS84 +units=m +no_defs", | ||
axisinverted: false, | ||
geographic: false, | ||
extent: [166021.44, 0.0, 833978.56, 9329005.18] | ||
}); | ||
|
||
this.get({ | ||
epsg:"EPSG:25833", | ||
proj4:"+proj=utm +zone=33 +ellps=GRS80 +units=m +no_defs", | ||
axisinverted: false, | ||
geographic: false, | ||
extent: [-2465144.8,3638055.41,2885759.28, 9493779.8] | ||
}); | ||
|
||
this.get({ | ||
epsg:"EPSG:23032", | ||
proj4:"+proj=utm +zone=32 +ellps=intl +units=m +no_defs", | ||
axisinverted: false, | ||
geographic: false, | ||
extent: [-1206117.77, 3859932.9, 2582411.08, 8051813.3] | ||
}); | ||
|
||
this.get({ | ||
epsg:"EPSG:23033", | ||
proj4:"+proj=utm +zone=33 +ellps=intl +units=m +no_defs", | ||
axisinverted: false, | ||
geographic: false, | ||
extent: [-1767202.11, 3859945.89, 2023400.16, 8079073.01] | ||
}); | ||
//REGISTER AT THE END THE CUSTOM PROJECTIONS | ||
ol.proj.proj4.register(proj4) | ||
registerProjection(epsg) { | ||
return new Promise((resolve, reject) => { | ||
let projection = this.isRegistered(epsg); | ||
// check if already register | ||
if (projection) resolve(projection); | ||
else { | ||
XHR.get({url: `${API_BASE_URLS.CRS}${epsg.split(':')[1]}`}) | ||
.then(({result, data}) => { | ||
if (result) { | ||
data.epsg = normalizeEpsg(data.epsg); | ||
projection = this.get(data); | ||
ol.proj.proj4.register(proj4); | ||
resolve(projection); | ||
} | ||
}) | ||
.catch(err => reject(err)) | ||
} | ||
}) | ||
} | ||
}; | ||
|
||
|
||
module.exports = Projections; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters