|
Hi,
Yes you can set the Note or so when the mouse move over it. To know when the mouse move over it you have to install an event handler in OnMouseMove event.
You have to keep an array of all the xy positions of all the pushpins, and in MouseMove you can check if you are nearby or over one of the pushpins. If so you take according action.
Note that you have to optimize this code for speed as thsi event handler is called thousands of times a second. |