Android Open Source - maps my Overlay Item From Project Back to project page maps .
License 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.
Java Source Code package edu.cs4730.MapDemo;
/ * f r o m w w w . j a v a 2 s . c o m * /
import java.util.ArrayList;
import android.graphics.Path;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.OverlayItem;
public class myOverlayItem extends OverlayItem{
ArrayList<GeoPoint> myPath = null;
public myOverlayItem(GeoPoint point, String title, String snippet) {
super (point, title, snippet);
}
public myOverlayItem(ArrayList<GeoPoint> path, String title, String snippet) {
super (path.get(0), title, snippet);
myPath = path;
}
public ArrayList<GeoPoint> getPath() {
return myPath;
}
public void setPath(ArrayList<GeoPoint> path) {
myPath = path;
}
}
Java Source Code List android.UnusedStub.java edu.cs4730.MapDemo.GoogleMapsDemo2.java edu.cs4730.MapDemo.GoogleMapsDemo.java edu.cs4730.MapDemo.HelloGoogleMaps2.java edu.cs4730.MapDemo.HelloItemizedOverlay.java edu.cs4730.MapDemo.MapDemoActivity.java edu.cs4730.MapDemo.Placemark.java edu.cs4730.MapDemo.dataSet.java edu.cs4730.MapDemo.myItemizedOverlay.java edu.cs4730.MapDemo.myOverlayItem.java edu.cs4730.MapDemo.myOverlay.java edu.cs4730.MapDemo.saxHandler.java edu.cs4730.mapdemov2.BasicMapActivity.java edu.cs4730.mapdemov2.BasicMapActivity.java edu.cs4730.mapdemov2.CompassActivity.java edu.cs4730.mapdemov2.CompassActivity.java edu.cs4730.mapdemov2.DrawMapActivity.java edu.cs4730.mapdemov2.DrawMapActivity.java edu.cs4730.mapdemov2.MainActivityOrg.java edu.cs4730.mapdemov2.MainActivityOrg.java edu.cs4730.mapdemov2.MainActivity.java edu.cs4730.mapdemov2.MainActivity.java edu.cs4730.mapdemov2.Placemark.java edu.cs4730.mapdemov2.Placemark.java edu.cs4730.mapdemov2.dataSet.java edu.cs4730.mapdemov2.dataSet.java edu.cs4730.mapdemov2.saxHandler.java edu.cs4730.mapdemov2.saxHandler.java