Back to project page SmartMap.
The source code is released under:
Apache License
If you think the Android project SmartMap 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.dennytech.smartmap; /* w w w . j a va2 s .c o m*/ public interface IMapViewLayoutParams { public static final int MATCH_PARENT = android.view.ViewGroup.LayoutParams.MATCH_PARENT; public static final int WRAP_CONTENT = android.view.ViewGroup.LayoutParams.WRAP_CONTENT; public static final int BOTTOM_CENTER = 81; public Object real(); public int getWidth(); public int getHeight(); public IGeoPoint getPoint(); public int getAlignment(); public void setPoint(IGeoPoint point); public int getMode(); }