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?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…