caTea 블로그

android google map 좌표들을 이용해 스크린에 꽉차게 본문

android

android google map 좌표들을 이용해 스크린에 꽉차게

ZaRas 2017. 5. 25. 09:50
반응형
public void setMapBounds(ArrayList<LatLng> array){
mGoogleMap.moveCamera(CameraUpdateFactory.newLatLng(new LatLng(33.510306, 126.491825)));

LatLngBounds.Builder builder = new LatLngBounds.Builder();

for(LatLng ll : array){
builder.include(ll);
}

int width = getResources().getDisplayMetrics().widthPixels;
int height = getResources().getDisplayMetrics().heightPixels;

CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(builder.build(), width, height, Utils.dip2pixel(mContext, 50.0f));
mGoogleMap.animateCamera(cu);
}


728x90

'android' 카테고리의 다른 글

adb 특정 텍스트만 필터걸어서 파일쓰기 안드로이드  (0) 2018.01.30
android crash dump  (0) 2017.12.20
AppBarLayout 부드럽게 스크롤  (0) 2017.04.14
Magnify Anim View Pager  (0) 2017.03.13
android frame animation class  (0) 2017.02.22