Android:地图叠加层标签

前端之家收集整理的这篇文章主要介绍了Android:地图叠加层标签 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在构建MapView,并且希望我的自定义叠加项在用户点击它们时显示它们标记的位置的名称,例如Android Maps应用.

我设置了onTap侦听器和浮动TextView来保存位置名称.我仍然需要对其进行设置,以便在用户移动地图等时重新绘制标签.

无论如何,我想知道我是否在这里重新发明轮子.有我不知道的内置方法吗?我认为大多数MapView实现都有标签.

作为参考,到目前为止我的实现:

在地图xml中:

<LinearLayout android:id="@+id/mapBubbleWrap"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true">
    <TextView android:id="@+id/mapBubble" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:visibility="gone" 
        android:background="#ffffff" 
        android:textColor="#ff0000"/>
</LinearLayout>

在我扩展的ItemizedOverlay中:

public boolean onTap(int index) {

    this.setFocus( mOverlays.get(index) );      
    return true;
}

在我的活动onFocus中:

public void onFocusChanged( ItemizedOverlay overlay,OverlayItem item ) {
    if( item != null) {
        mapBubble.setText(item.getTitle());
        Point newPoint = mapView.getProjection().toPixels(item.getPoint(),null);
        mapBubbleWrap.setPadding(newPoint.x,newPoint.y-10,0);
        mapBubble.setVisibility(View.VISIBLE);
    }
}
最佳答案

I would think that most
implementations of MapView have
labels.

可能的话,除了您正在做的事情之外,Google Map插件中没有内置任何东西可以支持它们.尽管我没有完全关注整个焦点问题.如果我想在用户点击时弹出一个面板,我只是在用户点击时显示一个弹出面板-例如this project.

原文链接:https://www.f2er.com/android/531471.html

猜你在找的Android相关文章