Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. circle = googleMap.addCircle(new CircleOptions()
  2. .center(point)
  3. .radius(radius)
  4. .strokeWidth(5.5f)
  5. .strokeColor(Color.RED));
  6.  
  7. polyLine = googleMap.addPolyline(new PolylineOptions()
  8. .add(centerPoint, borderPoint)
  9. .width(5)
  10. .color(Color.RED));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement