Android Google地图中可调整大小的圆圈叠加

时间:2017-01-18 12:41:44

标签: android

https://stackoverflow.com/questions/34542816/resizable-circle-overlay-in-android Android Google地图中可调整大小的圆圈叠加 我需要像这样的确切输出。

1 个答案:

答案 0 :(得分:0)

更改半径。

mMap.addCircle(new CircleOptions()
            .center(new LatLng(location.getLatitude(), location.getLongitude()))
            .radius(100)
            .strokeColor(Color.RED)
            .fillColor(Color.BLUE));