You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ImageryType.js 218B

4 jaren geleden
123456789101112131415
  1. /**
  2. * @Author: Caven
  3. * @Date: 2020-05-10 08:15:36
  4. */
  5. let ImageryType = {
  6. ARCGIS: 'arcgis',
  7. SINGLE_TILE: 'single_tile',
  8. WMS: 'wms',
  9. WMTS: 'wmts',
  10. XYZ: 'xyz',
  11. COORD: 'coord'
  12. }
  13. export default ImageryType