Commit d151455f3d10f3c3370894c45d61783e313bbe39
Committed by
Andrew Shvayka
1 parent
1785ea87
Set DEFAULT_MAP_PAGE_SIZE
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -25,7 +25,7 @@ import { |
25 | 25 | } from './schemes'; |
26 | 26 | import { EntityType } from '@shared/models/entity-type.models'; |
27 | 27 | |
28 | -export const DEFAULT_MAP_PAGE_SIZE = 2 ** 14; | |
28 | +export const DEFAULT_MAP_PAGE_SIZE = 16384; | |
29 | 29 | |
30 | 30 | export type GenericFunction = (data: FormattedData, dsData: FormattedData[], dsIndex: number) => string; |
31 | 31 | export type MarkerImageFunction = (data: FormattedData, dsData: FormattedData[], dsIndex: number) => string; | ... | ... |