AbstractGeometryImageRenderSettings constructor

const AbstractGeometryImageRenderSettings({
  1. Color activeInnerColor = const Color.fromARGB(255, 255, 255, 255),
  2. Color activeOuterColor = const Color.fromARGB(255, 0, 0, 0),
  3. Color inactiveInnerColor = const Color.fromARGB(255, 128, 128, 128),
  4. Color inactiveOuterColor = const Color.fromARGB(255, 128, 128, 128),
})

Creates turn arrow rendering settings with customizable colors.

Initializes rendering settings for abstract geometry turn arrow images. All color parameters are optional and default to SDK-optimized values: active inner (white), active outer (black), inactive inner (gray), inactive outer (gray).

Parameters

  • activeInnerColor - Inner fill color for recommended turn arrows (default: white)
  • activeOuterColor - Outer border color for recommended turn arrows (default: black)
  • inactiveInnerColor - Inner fill color for alternative turn arrows (default: gray)
  • inactiveOuterColor - Outer border color for alternative turn arrows (default: gray)

Implementation

const AbstractGeometryImageRenderSettings({
  this.activeInnerColor = const Color.fromARGB(255, 255, 255, 255),
  this.activeOuterColor = const Color.fromARGB(255, 0, 0, 0),
  this.inactiveInnerColor = const Color.fromARGB(255, 128, 128, 128),
  this.inactiveOuterColor = const Color.fromARGB(255, 128, 128, 128),
});