2

  我使用百度地图显示从服务器获取的商店,包含图片网址。我使用 Glide 为地图设置图标。

  这是我用来将标记添加到地图的方法。

private void setMarks(List<ShopList> shops) {

    for(ShopList shopItem : shops){
        double latitude = shopItem.getLat();
        double longitude = shopItem.getLng();
        LatLng latLng = new LatLng(latitude,longitude);


        String shopName = shopItem.getName();
        OverlayOptions textOption = new TextOptions()
                .text(shopName)
                .fontSize(50)
                .position(latLng);
        mBaiduMap.addOverlay(textOption);


        Glide.with(mContext.getApplicationContext())
                .load(shopItem.getCategory_image())
                .asBitmap()
                .placeholder(R.drawable.ic_shop_image_loading) 
                .error(R.drawable.ic_shop_image_load_error)    
                .override(SizeUtils.dip2px(mContext,128),SizeUtils.dip2px(mContext,128)) 
                .centerCrop()                                                            
                .into(target);                                        
    }
}  

  
  这是 Glide 回调代码。

private SimpleTarget<Bitmap> target = new SimpleTarget<Bitmap>() {
    @Override
    public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
        BitmapDescriptor descriptor = BitmapDescriptorFactory.fromBitmap(resource);
        Marker marker = (Marker) mBaiduMap.addOverlay(new MarkerOptions().position(latLng).icon(descriptor));
        mMarkers.add(marker); 
    }

};  

  我无法传递 latLang 的参数,因此我无法在 onResourceReady 中初始化 Marker,也无法将 Marker 添加到 mMarkers。我可以做些什么来将 latLang 与特定的位图联系起来?

4

1 回答 1

1

你必须创建你的自定义Target

public class MyTarget extends SimpleTarget<Bitmap> {

    private final LatLng latLng;

    public MyTarget(LatLng latLng) {
        this.latLng = latLng;
    }

    @Override
    public void onResourceReady(final Bitmap resource, final GlideAnimation<? super Bitmap> glideAnimation) {
        // use your `latLng`
    }
}

并使用这种方式:

Glide.with(...)
    ...                                                    
    .into(new MyTarget(latLng));
于 2017-04-04T09:59:37.530 回答