Package 

Class PolylineKt

    • Method Summary

      Modifier and Type Method Description
      final static Unit Polyline(List<LatLng> points, Boolean clickable, Color color, Cap endCap, Boolean geodesic, Integer jointType, List<PatternItem> pattern, Cap startCap, Object tag, Boolean visible, Float width, Float zIndex, Function1<Polyline, Unit> onClick) A composable for a polyline on the map.
      final static Unit Polyline(List<LatLng> points, List<StyleSpan> spans, Boolean clickable, Cap endCap, Boolean geodesic, Integer jointType, List<PatternItem> pattern, Cap startCap, Object tag, Boolean visible, Float width, Float zIndex, Function1<Polyline, Unit> onClick) A composable for a polyline on the map that supports a StyleSpan.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • Polyline

        @Composable() final static Unit Polyline(List<LatLng> points, Boolean clickable, Color color, Cap endCap, Boolean geodesic, Integer jointType, List<PatternItem> pattern, Cap startCap, Object tag, Boolean visible, Float width, Float zIndex, Function1<Polyline, Unit> onClick)

        A composable for a polyline on the map.

        Parameters:
        points - the points comprising the polyline
        clickable - boolean indicating if the polyline is clickable or not
        color - the color of the polyline
        endCap - a cap at the end vertex of the polyline
        geodesic - specifies whether to draw the polyline as a geodesic
        jointType - the joint type for all vertices of the polyline except the start and end vertices
        pattern - the pattern for the polyline
        startCap - the cap at the start vertex of the polyline
        visible - the visibility of the polyline
        width - the width of the polyline in screen pixels
        zIndex - the z-index of the polyline
        onClick - a lambda invoked when the polyline is clicked
      • Polyline

        @Composable() final static Unit Polyline(List<LatLng> points, List<StyleSpan> spans, Boolean clickable, Cap endCap, Boolean geodesic, Integer jointType, List<PatternItem> pattern, Cap startCap, Object tag, Boolean visible, Float width, Float zIndex, Function1<Polyline, Unit> onClick)

        A composable for a polyline on the map that supports a StyleSpan.

        Parameters:
        points - the points comprising the polyline
        spans - style spans for the polyline
        clickable - boolean indicating if the polyline is clickable or not
        endCap - a cap at the end vertex of the polyline
        geodesic - specifies whether to draw the polyline as a geodesic
        jointType - the joint type for all vertices of the polyline except the start and end vertices
        pattern - the pattern for the polyline
        startCap - the cap at the start vertex of the polyline
        visible - the visibility of the polyline
        width - the width of the polyline in screen pixels
        zIndex - the z-index of the polyline
        onClick - a lambda invoked when the polyline is clicked