While setting nonScaling for 2D series is well described in the docs, setting this property to true on an amCharts orthographic map causes polygons to fly away when zooming.
const circleSeries = chart.series.push(new am4maps.MapPolygonSeries());
const polygon = circleSeries.mapPolygons.create();
polygon.multiPolygon = am4maps.getCircle(10, 10, 5);
// part in question below
circleSeries.mapPolygons.template.nonScaling = true; //?
circleSeries.mapPolygons.template.polygon.nonScaling = true;//?
My case is just like this orthographic map example on the amcharts website. How to set nonScalling for those red markers?