IconAnchor
Hello, currently the icon anchor for bottom_right and bottom_left does not work. I suppose the problem is gonna be in every case, when u have to pass an enum item, that contains ' _ ' , even in the other classes and cases. The problem is that currently you are doing : iconAnchor?.toString().split('.').last.toLowerCase(); - In file symbol_layer.dart, which returns ("bottom_left") but for bottom left, you are suppose to pass value ("bottom-left") so when I add .replaceAll("_", "-") to the function, which returns "bottom-left", it works fine. Have a nice day.
Hi @FronnieSW, thank you for reporting this issue, it is addressed in https://github.com/mapbox/mapbox-maps-flutter/pull/523.