Home > OS >  Draw a circle in a fixed area on the mapbox map. || Kotlin
Draw a circle in a fixed area on the mapbox map. || Kotlin

Time:07-26

I've created an app I've used geofence I want. Show a circle on the mapbox with the same radius as the geofence. The problem is that the circle is displayed and the size of the circle changes as the map is zoomed.

CodePudding user response:

You probably don't want a proper circle feature. Rather, you want a polygon with many vertices that resembles a circle. This has been answered already with ready-to-use code here: Drawing a circle with the radius in miles/meters with Mapbox GL JS

  • Related