Kymera map panel selecting pin Map

I am using kymera map module in ignition and I set the icon Expression as well as the location with label and it’s work but I like to develop when pin on the map is click, new window will pop-up. i would to know how to make pin indicator act as button to make it go to another window

you can use onPointclicked() on map panel and then use following code to check which point is clicked:

if point.getName() == ‘Station01’: # the name you use in dataset for point
# open window base on the name

The trick here you should use icon and hover icon to force this event trigger. It seems there is a bug for it.