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.demo; /*w w w .j ava 2s .co m*/ import com.codeandmagic.cartocache.Place; import com.google.android.gms.maps.model.LatLng; /** * Created by evelyne24. */ public class GooglePlace implements Place { public final String id; public final String name; public final LatLng latLng; public GooglePlace(String id, String name, LatLng latLng) { this.id = id; this.name = name; this.latLng = latLng; } @Override public String getId() { return id; } @Override public LatLng getPosition() { return latLng; } }