Dashboards & Visualizations

How to drilldrown from longitude and latitude fields from a table to the center of a map visualization with the selected location?

leo_wang
Path Finder

I built a dashboard which has two panels: a "table" on the top and follow a "map"
The table has longitude / latitude fields and other detailed information.

What I want to do is drilldown the longitude / latitude into the map and change the map center to the location of the selected data.

Is that possible?
I guess I should write some javascript code to get the tokens and then change the map center, but I don't know how to do that in detail...

0 Karma

afishkin_splunk
Splunk Employee
Splunk Employee

Primary Panel Type: Map should have

       <drilldown>
        <set token="center">($click.lat.value$,$click.lon.value$)</set>
        <set token="bounds">($click.bounds.south$,$click.bounds.west$,$click.bounds.north$,$click.bounds.east$)</set>
        <set token="filter">latitude>=$click.bounds.south$ latitude<$click.bounds.north$ longitude>=$click.bounds.west$ longitude<$click.bounds.east$</set>
      </drilldown>

{noformat}
Secondary Panel Type: Map should have

      <search>
        <query>
          | your look up| search $filter$ | geostats latfield=latitude longfield=longitude sum(count) as count
        </query>
          </search>
      <option name="mapping.map.fitBounds">$bounds$</option>
      <option name="mapping.map.center">$center$</option>
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...