At the moment I add my markers to the map as follows:
public void onMapReady(GoogleMap map) { Marker marker = map.addMarker(new MarkerOptions() .position(new LatLng(47.045029, 28.861427)) .title("Marker")); Marker marker2 = map.addMarker(new MarkerOptions() .position(new LatLng(47.000327, 28.867950)) .title("Marker")); Marker marker3 = map.addMarker(new MarkerOptions() .position(new LatLng(47.024204, 28.889236)) .title("Marker")); builder.include(marker.getPosition()); builder.include(marker2.getPosition()); builder.include(marker3.getPosition()); } But since the number of these markers will increase over time, I’m thinking about how to store these markers differently (as an option I’m looking at it: using SQLite).
Please tell me how it is possible to optimize the operation of the application, namely, to associate work with SQLite .
как можно иначе хранить эти маркеры- and how do you store them now? The database option is fine. - post_zeew