Package 

Class CircleKt

    • Method Summary

      Modifier and Type Method Description
      final static Unit Circle(LatLng center, Boolean clickable, Color fillColor, Double radius, Color strokeColor, List<PatternItem> strokePattern, Float strokeWidth, Object tag, Boolean visible, Float zIndex, Function1<Circle, Unit> onClick) A composable for a circle on the map.
      • Methods inherited from class java.lang.Object

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

      • Circle

        @Composable() final static Unit Circle(LatLng center, Boolean clickable, Color fillColor, Double radius, Color strokeColor, List<PatternItem> strokePattern, Float strokeWidth, Object tag, Boolean visible, Float zIndex, Function1<Circle, Unit> onClick)

        A composable for a circle on the map.

        Parameters:
        center - the LatLng to use for the center of this circle
        clickable - boolean indicating if the circle is clickable or not
        fillColor - the fill color of the circle
        radius - the radius of the circle in meters.
        strokeColor - the stroke color of the circle
        strokePattern - a sequence of PatternItem to be repeated along the circle's outline (null represents a solid line)
        strokeWidth - the width of the circle's outline in screen pixels
        tag - optional tag to be associated with the circle
        visible - the visibility of the circle
        zIndex - the z-index of the circle
        onClick - a lambda invoked when the circle is clicked