I found that after changing the overlays on the MapView changes are not visible until the user moves the map, causing a redraw. Is there any way to make this redraw?
MapView
In your Overlay, keep a link to MapView. Then, when you want to force the redraw, call:
mMapView.invalidate();
Alternatively, if you are not in the user interface thread, you can call this:
mMapView.postInvalidate();
Source: https://habr.com/ru/post/1303703/More articles:Dynamically manage two jar files with the same package and class names - javaCan Perl DBIx :: Class override the way a column is retrieved from a database? - sqliteJRun Servlet error while trying to use java object - coldfusioncompare array of strings using collection - javaConvert UTF8 text for use in url - urlJquery Table sorter and special characters - jqueryGPU programming - transmission bottlenecks - benchmarkingCouchDB - Sorting Documents by Position - sortingWill the Java garbage collector interrupt the thread? - javaWhy can different computers calculate different arithmetic results in VB.NET? - mathAll Articles