Could there be a way to divide a 650x650px map into grid? I can use map as .png or get element from browser using selenium. I'd like each square to have its own coordinates, for example, the bottom right corner (65, 65) (x, y), similar to a battleship game. I need this so I can navigate the map. For instance, I'd like to move to coordinates (20, 30) and have the program click on a specific square with those coordinates. The entire map is a canvas element in a browser game where I can't directly mark the opponent, so this is the only workaround I've come up with.
im also posing map.png if that helps.