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.

TerrainType.js 188B

4 years ago
1234567891011121314
  1. /**
  2. * @Author: Caven
  3. * @Date: 2020-05-10 08:15:36
  4. */
  5. let TerrainType = {
  6. NONE: 'none',
  7. XYZ: 'xyz',
  8. ARCGIS: 'arcgis',
  9. GOOGLE: 'google',
  10. VR: 'vr'
  11. }
  12. export default TerrainType