highcharts
Version:
JavaScript charting framework
36 lines (35 loc) • 701 B
JavaScript
/* *
* LimaLabs provider, used for tile map services
* */
;
/* *
*
* Class
*
* */
class LimaLabs {
constructor() {
/* *
*
* Properties
*
* */
this.defaultCredits = ('Map data ©2023' +
' <a href="https://maps.lima-labs.com/">LimaLabs</a>');
this.initialProjectionName = 'WebMercator';
this.requiresApiKey = true;
this.themes = {
Standard: {
url: 'https://cdn.lima-labs.com/{zoom}/{x}/{y}.png?api={apikey}',
minZoom: 0,
maxZoom: 20
}
};
}
}
/* *
*
* Default Export
*
* */
export default LimaLabs;