0

I want to create a cricle on the Google Map that can be draggable from the user .But the radius of the the cirlce will be static.So any idea how can we do this.

This is how i am creating a Circle

Circle circle = mMap.addCircle(new CircleOptions()
                .center(new LatLng(Latitude, longitude)).radius(100)
                .strokeColor(Color.RED));

Please suggest me what i have to do so that the circle can be draggable.

Developer
  • 5,978
  • 19
  • 50
  • 107

1 Answers1

0

You can try to detect touch and after that add/remove the same circle (removing is provided here). It might have some performance issues if You're going to react to every event.

Community
  • 1
  • 1
sandrstar
  • 11,931
  • 7
  • 58
  • 64