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; //w w w .ja v a 2 s .co m import com.google.android.gms.maps.model.LatLng; /** * A {@link Place} is an abstract concept of a geographical * location given by latitude and longitude. * * It is {@link android.os.Parcelable} so it can be saved and restored. * It must have an unique identifier. */ public interface Place { String getId(); LatLng getPosition(); }