Back to project page CartoCache.
The source code is released under:
Apache License
If you think the Android project CartoCache 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.codeandmagic.cartocache; //from w w w .j a v a 2 s .com import com.google.android.gms.maps.model.MarkerOptions; /** * Created by evelyne24. */ public class DefaultMarkerConfig<P extends Place> implements MarkerConfig<P> { @Override public MarkerOptions getMarker(P place) { return new MarkerOptions().position(place.getPosition()).title("Place " + place.getId()); } }