Using Coordinates on an image
Hi, i am relatively new to Java Swing. I have recently begun to develop a board game in which much like monopoly, you must move around the board. I have a set image already as a background in a set area (760,600)
My dilemma now is that i want to place pieces on set coordinates on each spot of the board. I already have an array list where i store the coordinates and use the index as an easier way to update a roll of the dice. How would i go about being able to add an image onto the board image at a specific point? I am currently using Jpanels as the whole interface for the board and have set my board image within a drawingArea. Are there any specific methods i should be using? Thanks!

