-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3d1ad5
commit 74df588
Showing
24 changed files
with
100 additions
and
45 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
export const GeometryType = { | ||
POINT: 'Point', | ||
LINE_STRING: 'LineString', | ||
LINEAR_RING: 'LinearRing', | ||
POLYGON: 'Polygon', | ||
MULTI_POINT: 'MultiPoint', | ||
MULTI_LINE_STRING: 'MultiLineString', | ||
MULTI_POLYGON: 'MultiPolygon', | ||
GEOMETRY_COLLECTION: 'GeometryCollection', | ||
CIRCLE: 'Circle', | ||
} | ||
|
||
export const ExtentCorner = { | ||
BOTTOM_LEFT: 'bottom-left', | ||
BOTTOM_RIGHT: 'bottom-right', | ||
TOP_LEFT: 'top-left', | ||
TOP_RIGHT: 'top-right', | ||
} | ||
|
||
export const OverlayPositioning = { | ||
BOTTOM_LEFT: 'bottom-left', | ||
BOTTOM_CENTER: 'bottom-center', | ||
BOTTOM_RIGHT: 'bottom-right', | ||
CENTER_LEFT: 'center-left', | ||
CENTER_CENTER: 'center-center', | ||
CENTER_RIGHT: 'center-right', | ||
TOP_LEFT: 'top-left', | ||
TOP_CENTER: 'top-center', | ||
TOP_RIGHT: 'top-right', | ||
} | ||
|
||
export const SourceState = { | ||
UNDEFINED: 'undefined', | ||
LOADING: 'loading', | ||
READY: 'ready', | ||
ERROR: 'error', | ||
} | ||
|
||
export const WMSServerType = { | ||
/** | ||
* HiDPI support for [Carmenta Server](https://www.carmenta.com/en/products/carmenta-server) | ||
* @api | ||
*/ | ||
CARMENTA_SERVER: 'carmentaserver', | ||
/** | ||
* HiDPI support for [GeoServer](https://geoserver.org/) | ||
* @api | ||
*/ | ||
GEOSERVER: 'geoserver', | ||
/** | ||
* HiDPI support for [MapServer](https://mapserver.org/) | ||
* @api | ||
*/ | ||
MAPSERVER: 'mapserver', | ||
/** | ||
* HiDPI support for [QGIS](https://qgis.org/) | ||
* @api | ||
*/ | ||
QGIS: 'qgis', | ||
} |
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
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