Region map

Hi,

I can't see the name in the layer settings (vector map) of the region map . I'm working on Kibana 5.6.0

Custom Region Maps

regionmap:
layers:
- name: "Catastro"
url: "https://xx.xx.xx.xxx:5000/geojson"
attribution: "Municipio de envigado"
fields:
- name: "OBJECTID_1"
description: "OBJECTID_1"
- name: "OBJECTID"
description: "OBJECTID"

Hi,

The configuration you posted does not show any indentation. I need to know the indentation for troubleshooting your configuration. Please reply with your configuration between ``` and ``` here in Discuss.

You should also check for any errors in your web browser devtools console window. A common error we see is Cross-Origin Request Blocked. This means the web server hosting your custom geojson file is not configured to allow Cross Origin requests. There are some tips for configuring CORS for different servers at https://enable-cors.org/.

Here is an example of my config.

regionmap:
  layers:
     - name: "My world countries"
       url: "http://localhost:8000/world_countries_v1.geo.json"
       attribution: "[OpenStreetMap contributors](http://www.openstreetmap.org/copyright)"
       fields:
          - name: "iso2"
            description: "ISO code"

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.