PlaceMarker.Builder

class PlaceMarker.Builder


A builder of PlaceMarker.

Summary

Public constructors

Returns an empty Builder instance.

Public functions

PlaceMarker

Constructs the PlaceMarker defined by this builder.

PlaceMarker.Builder

Sets the color that should be used for the marker on the map.

PlaceMarker.Builder
setIcon(icon: CarIcon, iconType: Int)

Sets the icon to display in the marker.

PlaceMarker.Builder

Sets the text that should be displayed as the marker's content.

Public constructors

Builder

Added in 1.0.0
Builder()

Returns an empty Builder instance.

Public functions

build

Added in 1.0.0
fun build(): PlaceMarker

Constructs the PlaceMarker defined by this builder.

Throws
java.lang.IllegalStateException

if the icon is of the type TYPE_IMAGE and a a color is set

setColor

Added in 1.0.0
fun setColor(color: CarColor): PlaceMarker.Builder

Sets the color that should be used for the marker on the map.

This color is applied in the following cases:

  • When the PlaceMarker is displayed on the map, the pin enclosing the icon or label will be painted using the given color.
  • When the PlaceMarker is displayed on the list, the color will be applied if the content is a label. A label rendered inside a map's pin cannot be colored and will always use the default color as chosen by the host.

Unless set with this method, the host will use a default color for the marker.

The host may ignore this color and use the default instead if the color does not pass the contrast requirements.

A color cannot be set if the marker's icon type is of TYPE_IMAGE.

Throws
java.lang.NullPointerException

if the color is null

setIcon

Added in 1.0.0
fun setIcon(icon: CarIcon, iconType: Int): PlaceMarker.Builder

Sets the icon to display in the marker.

Unless set with this method, the marker will not have an icon.

If a label is specified with setLabel, the icon will take precedence over it.

Icon Sizing Guidance If the input icon's size exceeds the sizing requirements for the given icon type in either one of the dimensions, it will be scaled down to be centered inside the bounding box while preserving its aspect ratio.

See CarIcon for more details related to providing icon and image resources that work with different car screen pixel densities.

Parameters
icon: CarIcon

the CarIcon to display inside the marker

iconType: Int

one of TYPE_ICON or TYPE_IMAGE

Throws
java.lang.NullPointerException

if the icon is null

setLabel

Added in 1.0.0
fun setLabel(label: CharSequence): PlaceMarker.Builder

Sets the text that should be displayed as the marker's content.

Unless set with this method, the marker will not have a label.

If an icon is specified with setIcon, the icon will take precedence.

Spans are not supported in the input string and will be ignored.

Parameters
label: CharSequence

the text to display inside of the marker. The string must have a maximum size of 3 characters. Set to null to let the host choose a labelling scheme (for example, using a sequence of numbers)

Throws
java.lang.NullPointerException

if the label is null

See also
CarText