@goongmaps/goong-js
Version:
A WebGL interactive maps library
24 lines (20 loc) • 493 B
JavaScript
// @flow strict
type Config = {|
API_URL: string,
EVENTS_URL: ?string,
FEEDBACK_URL: string,
REQUIRE_ACCESS_TOKEN: boolean,
ACCESS_TOKEN: ?string,
MAX_PARALLEL_IMAGE_REQUESTS: number
|};
const config: Config = {
API_URL: 'https://tiles.goong.io',
get EVENTS_URL() {
return 'https://rsapi.goong.io';
},
FEEDBACK_URL: 'https://goong.io',
REQUIRE_ACCESS_TOKEN: true,
ACCESS_TOKEN: null,
MAX_PARALLEL_IMAGE_REQUESTS: 16
};
export default config;