如何在MAPBOX中使用纬度和经度在半径周围制作一个圆角

时间:2017-12-21 05:38:07

标签: android mapbox

我在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我需要这样的代码或如何自定义圈子。请帮助我

0 个答案:

没有答案