| 12345678910111213141516171819 |
- /**
- * @Author: Caven
- * @Date: 2020-05-10 08:15:36
- */
-
- let ImageryType = {
- ARCGIS: 'arcgis',
- SINGLE_TILE: 'single_tile',
- WMS: 'wms',
- WMTS: 'wmts',
- XYZ: 'xyz',
- COORD: 'coord',
- GRID: 'grid',
- MAPBOX: 'mapbox',
- MAPBOX_STYLE: 'mapbox_style',
- TMS: 'tms'
- }
-
- export default ImageryType
|