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.impl.autonavi; //from w w w. j av a 2s . com import com.dennytech.smartmap.IGeoPoint; public class ANMapViewLayoutParams { 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; private int mWidth; private int mHeight; private IGeoPoint mGeoPoint; private int mAlignment; public ANMapViewLayoutParams(int width, int height, IGeoPoint point, int alignment) { mWidth = width; mHeight = height; mGeoPoint = point; mAlignment = alignment; } public int getWidth() { return mWidth; } public int getHeight() { return mHeight; } public IGeoPoint getGeoPoint() { return mGeoPoint; } public int getAlignment() { return mAlignment; } }