mobility-toolbox-js
Version:
Toolbox for JavaScript applications in the domains of mobility and logistics.
18 lines (17 loc) • 395 B
TypeScript
export interface Source {
attribution: string;
options: {
attribution: string;
};
}
export interface SourceCache {
getSource: () => Source;
used: boolean;
}
/**
* Return the copyright a Maplibre map.
* @param {maplibregl.Map} map A Maplibre map
* @private
*/
declare const getMapGlCopyrights: (map: maplibregl.Map) => string[];
export default getMapGlCopyrights;