Android OverlayItem.setMarker(): Change the marker for one item

允我心安 提交于 2020-01-02 02:00:16

问题


Trying to change the marker from an overlay item I noticed the setMarker() makes the item not visible. Here's the code sample.

//Create new marker
Drawable icon = this.getResources().getDrawable(R.drawable.marker);

//Set the new marker to the overlay
overlayItem.setMarker(icon);

回答1:


A bounding rectangle needs to be specified for the Drawable:

//Create new marker
Drawable icon = this.getResources().getDrawable(R.drawable.marker);

//Set the bounding for the drawable
icon.setBounds(
    0 - icon.getIntrinsicWidth() / 2, 0 - icon.getIntrinsicHeight(), 
    icon.getIntrinsicWidth() / 2, 0);

//Set the new marker to the overlay
overlayItem.setMarker(icon);



回答2:


I believe this would work:

public void addOverlay(final OverlayItem overlay)
    {
        creditOverlay.add(overlay);
        populate();
        boundCenter(customMarker);
    }

You will have to call boundCenter or boundCenterBottom while adding overlay in map overlay list. In SetMarker() just set the custom maker.



来源:https://stackoverflow.com/questions/7505574/android-overlayitem-setmarker-change-the-marker-for-one-item

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!