If you are saying each player could have multiple parks, each with their own 60x60 grid then I would first setup a table of parks
This parks table would have a column with a park id, a player id, and possibly a label or name the park.
And then depending on how you wanted to have things setup for the 60x60 grid I would setup a table for the things that get planted.
If everything was of a uniform size of 1x1, then I would create a table that would have:
a column for the park id, a x coord, a y coord, and then an id for the type of thing planted.
If everything was not uniform, and you could plant something that is 10x20, or 5x10, or 13x17, etc. I would create a table with:
a column for the park id, a start x coord, a start y coord, an ending x coord, an ending y coord, and a column for the type id of whatever is planted.
The start coords would be the top left of the object, and the ending coords would be the bottom right corner of the object.
And then either way have another table with a list of id's for whatever is planted.
This is all based on assumptions of what your wanting.. but based on the assumptions I made that's how I would do it. Hope it helps