• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Map Icon Marker Size

pinkfloydim

Lurker
Dec 28, 2012
9
0
[HIGH]/*
* Add the Town Markers
*/
for (int i = 0;i < the_points.size();i++) {
GpsPoint the_pt = the_points.get(i);
Float lat_v = the_pt.lat;
Float lng_v = the_pt.lng;
String marker_name = the_pt.name;
String marker_desc = the_pt.desc;
String marker_icon = the_pt.icon;
mMap.addMarker(new MarkerOptions().position(new LatLng(lat_v, lng_v))
.title(marker_name)
.snippet(marker_desc)
.icon(BitmapDescriptorFactory.fromAsset("scroll_images/"+marker_icon)));
}[/HIGH]So I have my map loading the icons, which is cool.
But they are coming through quite small.
ANy way I can set the rendered size?
 

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones