@@ -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
@@ -178,7 +181,7 @@ mapcache_cfg* mapcache_configuration_create(apr_pool_t *pool)
178181 apr_table_add (grid -> metadata ,"profile" ,"global-mercator" );
179182 apr_table_add (grid -> metadata ,"wellKnownScaleSet" ,"urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible" );
180183 grid -> tile_sx = grid -> tile_sy = 256 ;
181- grid -> nlevels = 19 ;
184+ grid -> nlevels = 22 ;
182185 grid -> unit = MAPCACHE_UNIT_METERS ;
183186 grid -> extent = google_extent ;
184187 grid -> levels = (mapcache_grid_level * * )apr_pcalloc (pool ,
@@ -203,7 +206,7 @@ mapcache_cfg* mapcache_configuration_create(apr_pool_t *pool)
203206 apr_table_add (grid -> metadata ,"profile" ,"global-mercator" );
204207 apr_table_add (grid -> metadata ,"wellKnownScaleSet" ,"urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible" );
205208 grid -> tile_sx = grid -> tile_sy = 256 ;
206- grid -> nlevels = 19 ;
209+ grid -> nlevels = 22 ;
207210 grid -> unit = MAPCACHE_UNIT_METERS ;
208211 grid -> extent = google_extent ;
209212 grid -> levels = (mapcache_grid_level * * )apr_pcalloc (pool ,
0 commit comments