Back to project page clusterkraf.
The source code is released under:
Apache License
If you think the Android project clusterkraf 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 com.twotoasters.clusterkraf.sample; /* www. j a va2 s .c om*/ import android.os.Parcel; import android.os.Parcelable; import com.google.android.gms.maps.model.LatLng; /** * */ public class MarkerData implements Parcelable { private final LatLng latLng; private final String label; public static final MarkerData TwoToasters = new MarkerData(new LatLng(35.996826741234294d, -78.90048164874315d), "Two Toasters"); public MarkerData(LatLng latLng, String label) { this.latLng = latLng; this.label = label; } /** * @return the latLng */ public LatLng getLatLng() { return latLng; } /** * @return the label */ public String getLabel() { return label; } @Override public int describeContents() { // TODO Auto-generated method stub return 0; } @Override public void writeToParcel(Parcel dest, int arg1) { dest.writeParcelable(latLng, 0); dest.writeString(label); } }