Google map api V2 resize screen to match a circle drawn
问题 I am drawing a circle in a map (on the current location of the user) and I want the screen to zoom to have the circle in full screen with some margin. What I'm doing for now: drawCercleAroundPin(_googleMap, DataManager.RADIUS_SEARCH_CERCLE, _location); moveCamera(_googleMap, (10 / ((DataManager.RADIUS_SEARCH_CERCLE / 900) + 1))+10, 2000, _location, null); Well I tried some idiotic calculus since i wasn't able to find a proper solution... Does anyone have an idea? 回答1: If I understand