Back to project page android.
The source code is released under:
Apache License
If you think the Android project android 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.github.digin.android.models.map; //from w w w . java 2 s. co m import com.google.android.gms.maps.model.LatLng; /** * Created by mike on 8/10/14. */ public class BoundPoint { private int order; private LatLng point; public int getOrder() { return order; } public void setOrder(int order) { this.order = order; } public LatLng getPoint() { return point; } public void setPoint(LatLng point) { this.point = point; } }