Hi,
I'm currently trying the application, I have import a CSV Data in my splunk enterprise and I'm trying to build a map base on Latitude/Longitude, the map working properly, but I'm unable to change the blue circle for a map-pin.
I'm using the following search:
index=borne | fillnull | rename nLatitude as latitude nLongitude as longitude nNoBorne as description | eval markerColor=case(like(description, "%"), "red") | eval icon=case(like(description, "%"), "map-pin") | table latitude, longitude, description, markerColor, icon
... View more