Android - 使用Picasso获取图像后设置标记图标

时间:2015-12-08 13:53:10

标签: android google-maps

我正在使用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);

0 个答案:

没有答案