I am loading 400x400 tile map created using Tiled software. One tile is 120 pixels for total of 48000x48000 pixels.
I load like this
regionMap->initWithTMXFile("background2.tmx");
mapLayer->addChild(regionMap, 0, enTagTileMap);
mapLayer->setAnchorPoint(CCPoint(0,1));
Then I scroll like this.
mapLayer->setPosition(position);
When I vertically scroll to about this position, I do not get the tiles from the map anymore, I just get black tiles.
x=0 , y=5483.748535
When I horizontally scroll, I do not get the same problem even when I reach this position.
x=-48000, y=400
Thanks for advance.