There is no "preferred" map size anywhere, it depends on the function of the map.
Any map should be large enough to hold everything that needs to be on it, but not larger - nothing bores players as much as too big and empty maps.
That said, there are a number of technical limitations:
Minimum map size is the screen size set for the game.
parallax map size in pixel has to b map size in tiles multiplied by grid size
due to the limits of the RAM, a game planned for mobiles should not have a parallax greater than the screen size. If the game is for older computers, 50x50 tiles should be the maximum. For modern computers up to 100x100 tiles might be possible.
other than that there are no rules and you decide on the map size you'll want
I see thank you so much!There is no "preferred" map size anywhere, it depends on the function of the map.
Any map should be large enough to hold everything that needs to be on it, but not larger - nothing bores players as much as too big and empty maps.
That said, there are a number of technical limitations:
Minimum map size is the screen size set for the game.
parallax map size in pixel has to b map size in tiles multiplied by grid size
due to the limits of the RAM, a game planned for mobiles should not have a parallax greater than the screen size. If the game is for older computers, 50x50 tiles should be the maximum. For modern computers up to 100x100 tiles might be possible.
other than that there are no rules and you decide on the map size you'll want.