Created
June 4, 2012 14:10
-
-
Save BrunoCaimar/2868637 to your computer and use it in GitHub Desktop.
Esri.Android.GetExtent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Envelope env = new Envelope(); | |
map.getExtent().queryEnvelope(env); | |
double xMax = env.getXMax(); | |
double xMin = env.getXMin(); | |
double yMax = env.getYMax(); | |
double yMin = env.getYMin(); | |
String msg = "xMax:" + xMax + " xMin:" + xMin + " yMax:" | |
+ yMax + " yMin:" + yMin; | |
Log.d("onSingleTap", msg); | |
Toast.makeText(PMMA.this, msg, Toast.LENGTH_SHORT); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment