Dashboards & Visualizations

Splunk Dashboard Studio - Map - Center

j01am
Explorer

Hi all !

I display a map in a dashboard. The map only contains 1 point

I need to center the map dynamically for this point. But I can't do it because I'm not able to insert into the "center" value other value than integer (I tried token for example)

How can I perform it ?

Thank you a lot

 

 

My search : 

 

 

"ds_search_1_new": {
            "type": "ds.search",
            "options": {
                "query": "xxx | table lon lat",
                "queryParameters": {
                    "earliest": "$time.earliest$",
                    "latest": "$time.latest$"
                },
                "enableSmartSources": true
            },
            "name": "mapSearch"
        }

 

 


My visualization : 

 

 

"viz_map_1": {
    "type": "splunk.map",
    "options": {
        "zoom": 0,
        "layers": [
            {
                "type": "marker",
                "latitude": "> primary | seriesByName('lat')",
                "longitude": "> primary | seriesByName('lon')",
                "bubbleSize": "> primary | seriesByName('lat')"
            }
        ],
        "center": [
            0,
            0
        ]
    },
    "dataSources": {
        "primary": "ds_search_1_new"
    },
    "title": ""
}

 

 

 

Labels (2)

ferdousfahim
Engager

Facing the same problem, I notice the issue is a year old..

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...