Mao Projection

I need to change the map projection from Mercator to LatLon (EPSG:4326). Since upgrading to Kibana 5.5.2, I can not find where in the code I can change this. It used to be in src/ui/public/vislib/visualizations/_map.js. I can not change the WMS Map Server and my system is not on the internet.

Thanks.

hi @daneitz,

Kibana only supports the web-mercator projection (the EPSG:3857 spatial reference, https://en.wikipedia.org/wiki/Web_Mercator) as the map's projection. So if you put in a WMS server, please ensure that you're WMS can return images in that projection. Kibana uses Leaflet right now for mapping, and that does not allow you to change the map's projection.

If you bring in lat-lon data (e.g. as a vector layer for the Region Maps), the lat-lon needs to be in the WGS1984 datum (which is the same datum as the one from the EPSG:4326 spatial reference)

thx,

1 Like

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