getIconPitchAlignment method

Future<IconPitchAlignment?> getIconPitchAlignment()

Orientation of icon when map is pitched.

Implementation

Future<IconPitchAlignment?> getIconPitchAlignment() => messager
    .getIconPitchAlignment(id)
    .then((value) => value != null ? IconPitchAlignment.values[value] : null);