我在Geofence
中使用MapBox
,因此我想根据MapBox
中的半径和纬度和经度为目的地制作一个圆圈。请帮助我。
对于GoogleMap
,代码将如下:
Circle circle = googleMap.addCircle(new CircleOptions()
.center(new LatLng(latLng.latitude, latLng.longitude))
.radius(Constants.GEOFENCE_RADIUS_IN_METERS)
.strokeColor(Color.RED)
.strokeWidth(4f));
对于MapBox
我需要这样的代码或如何自定义圈子。请帮助我