package com.mapbox.mapboxsdk.testapp.model.annotations; import android.graphics.Bitmap; import android.os.Parcel; import android.os.Parcelable; import com.mapbox.mapboxsdk.annotations.BaseMarkerViewOptions; import com.mapbox.mapboxsdk.annotations.Icon; import com.mapbox.mapboxsdk.annotations.IconFactory; import com.mapbox.mapboxsdk.geometry.LatLng; public class TextMarkerViewOptions extends BaseMarkerViewOptions { private String text; public TextMarkerViewOptions() { } protected TextMarkerViewOptions(Parcel in) { position((LatLng) in.readParcelable(LatLng.class.getClassLoader())); snippet(in.readString()); title(in.readString()); flat(in.readByte() != 0); anchor(in.readFloat(), in.readFloat()); infoWindowAnchor(in.readFloat(), in.readFloat()); selectAnimatorResource(in.readInt()); deselectAnimatorResource(in.readInt()); rotation(in.readInt()); if (in.readByte() != 0) { // this means we have an icon String iconId = in.readString(); Bitmap iconBitmap = in.readParcelable(Bitmap.class.getClassLoader()); Icon icon = IconFactory.recreate(iconId, iconBitmap); icon(icon); } text(in.readString()); } @Override public TextMarkerViewOptions getThis() { return this; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel out, int flags) { out.writeParcelable(getPosition(), flags); out.writeString(getSnippet()); out.writeString(getTitle()); out.writeByte((byte) (isFlat() ? 1 : 0)); out.writeFloat(getAnchorU()); out.writeFloat(getAnchorV()); out.writeFloat(getInfoWindowAnchorU()); out.writeFloat(getInfoWindowAnchorV()); out.writeInt(getSelectAnimRes()); out.writeInt(getDeselectAnimRes()); out.writeInt(getRotation()); Icon icon = getIcon(); out.writeByte((byte) (icon != null ? 1 : 0)); if (icon != null) { out.writeString(getIcon().getId()); out.writeParcelable(getIcon().getBitmap(), flags); } out.writeString(text); } @Override public TextMarkerView getMarker() { return new TextMarkerView(this, text); } public TextMarkerViewOptions text(String text) { this.text = text; return getThis(); } public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { public CountryMarkerViewOptions createFromParcel(Parcel in) { return new CountryMarkerViewOptions(in); } public CountryMarkerViewOptions[] newArray(int size) { return new CountryMarkerViewOptions[size]; } }; }