...
|
...
|
@@ -33,6 +33,9 @@ |
|
|
|
|
|
-(NSString*) tileURL: (RMTile) tile
|
|
|
{
|
|
|
NSAssert4(((tile.zoom >= self.minZoom) && (tile.zoom <= self.maxZoom)),
|
|
|
@"%@ tried to retrieve tile with zoomLevel %d, outside source's defined range %f to %f",
|
|
|
self, tile.zoom, self.minZoom, self.maxZoom);
|
|
|
return [NSString stringWithFormat:@"http://a.tile.cloudmade.com/0199bdee456e59ce950b0156029d6934/2/%d/%d/%d/%d.png",[RMCloudMadeMapSource tileSideLength], tile.zoom, tile.x, tile.y];
|
|
|
}
|
|
|
|
...
|
...
|
|