Reputation: 930
Using the Mapbox Android SDK, what is the best way to create a red circle marker? I know how to do this using MarkerOptions() but that is now deprecated.
Thanks
Upvotes: 0
Views: 514
Reputation: 161
What version of the Mapbox Android SDK are you using? If you're on the latest (which I'd strongly recommend!), your best bet would be to use the Annotation Plugin. There is a new manager class structure for different types of annotations. The CircleManager should allow you to do exactly what you're hoping to.
Here's an example you can use as you build.
Upvotes: 3