android 地图拼接,Android:地图叠加层标签

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

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

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

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

在地图xml中:

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentTop="true">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:visibility="gone"

android:background="#ffffff"

android:textColor="#ff0000"/>

在我扩展的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);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值