구글맵 마커 사이즈 조절하기
프로그래밍/Android (Java)2020. 5. 4. 14:19
반응형
int height = 200;
int width = 200;
BitmapDrawable bitmapdraw=(BitmapDrawable)getResources().getDrawable(R.mipmap.marker);
Bitmap b=bitmapdraw.getBitmap();
Bitmap smallMarker = Bitmap.createScaledBitmap(b, width, height, false);
map.addMarker(new MarkerOptions()
.position(POSITION)
.title("Your title")
.icon(BitmapDescriptorFactory.fromBitmap(smallMarker))
);
[출처] https://stackoverflow.com/questions/14851641/change-marker-size-in-google-maps-api-v2
반응형
'프로그래밍 > Android (Java)' 카테고리의 다른 글
리스트뷰 (listview) 구분선 제거 (0) | 2020.07.31 |
---|---|
안드로이드 상태바 없애기 (시계, 알림 아이콘 부분) (0) | 2020.07.24 |
google map 에서 움직이는 마커 사용하기 (0) | 2020.05.04 |
슬라이드 레이어 만들기 (AndroidSlidingUpPanel 라이브러리) (0) | 2020.04.28 |
SQLite 에서 중복값 있으면 insert 건너뛰기 (0) | 2020.01.31 |
댓글()