From bc87cee16d17502580a767260836b20d7c40f26d Mon Sep 17 00:00:00 2001 From: Stefan Brabenetz Date: Mon, 17 May 2021 16:59:57 +0200 Subject: [PATCH] update map documentation --- documentation/map.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/map.md b/documentation/map.md index 7fd226b..4e3cdb7 100644 --- a/documentation/map.md +++ b/documentation/map.md @@ -74,7 +74,7 @@ map.addMarker( Adding a circle: ```kotlin map.addCircle( - Circle.CircleOptions() + CircleOptions() .center(location) .radius(100.0) .fillColor(Color.YELLOW) @@ -103,7 +103,7 @@ Adding a polyline: map.addPolyline( PolylineOptions() .add(location1, location2) - .strokeWidth(15f) + .width(15f) .startCap(Cap.RoundCap()) .endCap(Cap.SquareCap()) .zIndex(2f)