I want a draw custom markers on map. How to organize the display of many markers.
public class DatabaseHelper extends SQLiteOpenHelper {
static final String TABLE = "geotable";
public DatabaseHelper(Context context) {
super(context, "myDB", null, 1);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("create table geotable ("
+ "id integer primary key autoincrement,"
+ "image text,"
+ "lng text,"
+ "lat text" + ");");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXISTS "+TABLE);
onCreate(db);
}
In first class i'am create table in db. Then put info in this table
case R.id.saveToBD:
cv.put("image", tex);
cv.put("lng", lng);
cv.put("lat", ltd);
break;
and then i need a display all markers from DB to map. But i see only one (last) marker on map. How do I organize a cycle ?
public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {
DatabaseHelper sqlHelper;
SQLiteDatabase db;
Cursor userCursor;
private GoogleMap googleMap;
private String imageTest;
double lngTest, ltdTest;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
sqlHelper = new DatabaseHelper(getApplicationContext());
}
@Override
public void onResume() {
super.onResume();
db = sqlHelper.getReadableDatabase();
userCursor = db.query("geotable", null, null, null, null, null, null);
if (userCursor.moveToFirst()) {
int imageColIndex = userCursor.getColumnIndex("image");
int lngColIndex = userCursor.getColumnIndex("lng");
int latlColIndex = userCursor.getColumnIndex("lat");
do {
imageTest = userCursor.getString(imageColIndex);
lngTest = userCursor.getDouble(lngColIndex);
ltdTest = userCursor.getDouble(latlColIndex);
}
while (userCursor.moveToNext());
}
else
userCursor.close();
}
@Override
public void onDestroy() {
super.onDestroy();
db.close();
userCursor.close();
}
@Override
public void onMapReady(GoogleMap googleMap) {
googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(
new LatLng(ltdTest, lngTest), 16));
// You can customize the marker image using images bundled with
// your app, or dynamically generated bitmaps.
googleMap.addMarker(new MarkerOptions()
.icon(BitmapDescriptorFactory.fromPath(imageTest))
.anchor(0.0f, 1.0f) // Anchors the marker on the bottom left
.position(new LatLng(ltdTest, lngTest)));
}
Aucun commentaire:
Enregistrer un commentaire