UNPKG

adaguc-webmapjs

Version:

Interactive maps library, capable of parsing a OGC WMS getcapabilities and display geographical layers

12 lines (11 loc) 261 B
import WMJSBBOX from './WMJSBBOX.js'; /** * WMJSProjection Class * Keep all projection information, by a bbox and an srs value. */ export default class WMJSProjection { constructor () { this.bbox = new WMJSBBOX(); this.srs = 'EPSG:4326'; } };