I am stuck in setting MapView's min and max scale values, my current scales are
MAP_MIN_SCALE = 1000000;
MAP_MAX_SCALE = 1;
but these are not works for different geodatabase, my geodatabase spatial reference is WGS84.
mMapView.setMinScale(MAP_MIN_SCALE);
mMapView.setMaxScale(MAP_MAX_SCALE);
i have set this but i want this to be calculated dynamically, it works for one geodatabase but if i change geodatabase its not working for another geodatabase.
Please help me on this.