kalisio/kano

View on GitHub
api/config/categories/atmospheric.cjs

Summary

Maintainability
Test Coverage
module.exports = function ({ domain }) {
  return [{
    name: 'Categories.ATMOSPHERIC_LAYERS',
    i18n: {
      fr: {
        Categories: {
          ATMOSPHERIC_LAYERS: 'Observations atmosphériques'
        }
      },
      en: {
        Categories: {
          ATMOSPHERIC_LAYERS: 'Atmospheric observations'
        }
      }
    },
    icon: 'las la-smog',
    options: { exclusive: false, filter: { type: 'OverlayLayer', tags: { $in: ['atmospheric'] } } }
  }]
}