/** * Layer source for the ASIT VD tile server. * * @see https://www.asitvd.ch/chercher/geoservices/fond-de-plan-asit-vd.html * @hidden */ export default class _default extends olSourceWMTS { /** * @param {AsitVDOptions} options WMTS options. */ constructor(options: AsitVDOptions); } export type AsitVDOptions = { /** * Layer name. Possible values are `asitvd.fond_couleur`, `asitvd.fond_gris` * and `asitvd.fond_pourortho`. */ layer: string; }; import olSourceWMTS from 'ol/source/WMTS';