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 300B

12345678910111213141516171819
  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. GRID: 'grid',
  13. MAPBOX: 'mapbox',
  14. MAPBOX_STYLE: 'mapbox_style',
  15. TMS: 'tms'
  16. }
  17. export default ImageryType