I'm working on a school project and there is a task where I need to create a POI
map. This is how would I do it: I need to load a picture (map of some place, it can be just an image of stadium from bird perspective) in picturebox
control, then have a click event on picturebox
to take coordinates, and put on that coordinates another image (like some small custom icon, etc.).
Of course, while putting that image, I don't want to replace existing image (map) in picturebox
, but to make one image over existing one. Also, I will need to remember where I put those "POI icons" later in the database, but that's not the part of this problem question.
What do you guys think, is it possible to do that (image, with specific coordinates, over another image that already filled picturebox
) or I need to make another "idea" how to solve my problem? If is possible, how can I do it (code with the example would be much appreciated)? If isn't possible, can you give me some advice how to do it different maybe (other WinForms controls, other events, etc.)? Thank you in advance and pardon the grammatical mistakes.