我正在使用Picasso从休息服务中检索我的图像:
void drawMarker (String imageName) {
String imageLocation = "http://172.16.104.118//MyService/images/%s.png";
Picasso.with(this)
.load(String.format(imageLocation,imageName))
.into(imageView);
}
我想将检索到的图像设置为标记图标,但它只接受位图,
marker.icon("HERE");
mMap.addMarker(marker);