Skip to content

Commit e23aaab

Browse files
committed
Add additional zoom levels
1 parent 47d2757 commit e23aaab

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/configuration.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void mapcache_configuration_parse(mapcache_context *ctx, const char *filename, m
4141

4242
GC_CHECK_ERROR(ctx);
4343

44-
/* if we were suppplied with an onlineresource, make sure it ends with a / */
44+
/* if we were supplied with an onlineresource, make sure it ends with a / */
4545
if(NULL != (url = (char*)apr_table_get(config->metadata,"url"))) {
4646
char *urlend = url + strlen(url)-1;
4747
if(*urlend != '/') {
@@ -91,7 +91,7 @@ mapcache_cfg* mapcache_configuration_create(apr_pool_t *pool)
9191
5.36441802978516e-6
9292
};
9393

94-
double google_resolutions[19] = {
94+
double google_resolutions[22] = {
9595
156543.0339280410,
9696
78271.51696402048,
9797
39135.75848201023,
@@ -110,7 +110,10 @@ mapcache_cfg* mapcache_configuration_create(apr_pool_t *pool)
110110
4.777314267823516,
111111
2.388657133911758,
112112
1.194328566955879,
113-
0.5971642834779395
113+
0.5971642834779395,
114+
0.2985821417389697,
115+
0.1492910708694849,
116+
0.0746455354347424
114117
};
115118

116119

0 commit comments

Comments
 (0)