Get Geopoints from SQlite DB
问题 I created an SQlite database to store on it all latitudes and longitudes to display them in map. For the add of the values i didn't encouter any problem, i used this code: CoordBD CoordBd = new CoordBD(this); Coordo coordo = new Coordo(36.869686,10.315642 ); CoordBd.open(); CoordBd.insertCoordo(coordo); But i don't know how to insert them one by one in map, i usually/manually make this: GeoPoint point2 = new GeoPoint(microdegrees(36.86774),microdegrees(10.305302)); pinOverlay.addPoint(point2)