Back to project page maps.
The source code is released under:
GNU General Public License
If you think the Android project maps listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package edu.cs4730.MapDemo; import java.util.ArrayList; //from w ww . j a va2 s . c o m public class dataSet { private ArrayList<Placemark> placemarks = new ArrayList<Placemark>(); public void addPlacemark(Placemark currentPlacemark) { placemarks.add(currentPlacemark); } public ArrayList<Placemark> getPlacemarks() { return placemarks; } public void setPlacemarks(ArrayList<Placemark> placemarks) { this.placemarks = placemarks; } public int getSize() { return placemarks.size(); } }