mapbox / mapbox-plugins-android

Mapbox Android Plugins are a collection of libraries that extend our other SDKs, helping you design powerful mapping features while the plugins handle most of the heavy lifting.
https://www.mapbox.com/android-docs/plugins/overview/
BSD 2-Clause "Simplified" License
241 stars 120 forks source link

CircleManager.create has a low performance #1072

Open frankgogoland opened 4 years ago

frankgogoland commented 4 years ago

Dear Developer: I am try to use Mapbox to repace Baidu in abroad. and there are many points need to be draw in the same time ,I search the document of Mapbox, and use CircleManager create function .and put many points to the optionlist .the code like this: CircleOptions options = new CircleOptions();

            options.withLatLng(latLng)
                    .withCircleColor(PropertyFactory.circleColor(trackControlView.getColor(cell)).getValue())
                    .withData(null)
                    .withCircleRadius(6.0f);
             optionsList.add(options);

circleManager.create(optionsList);

When points are more and more, the interface is stuck。

frankgogoland commented 4 years ago

Can you help me ? I am confused. It seems that I need to select other Map SDK ?