jeffreyl
09-14-2022Cloud Apps
Open URL When Scatter Map Marker Is Clicked
I am building a scatter map and need to open a url (actually a Sisence dashboard) when a map marker is clicked. Thank You
Hi jeffreyl ,
Try this script:
widget.on('beforeviewloaded', function(se, ev) { $.each(ev.options.markersArray, function(index, value){ value.on('click', function(){ window.open( "https://www.sisense.com/", "_blank"); }) }) })
-Hari