gpt4 book ai didi

android - 经典标记重叠的 osmdroid 解决方法

转载 作者:搜寻专家 更新时间:2023-11-01 07:59:45 26 4
gpt4 key购买 nike

我正在使用 osmdroid 和 osm bonus pack 开发一个 Android 离线 map 应用程序,并从外部存储加载图 block 和数据。现在,随着数据的增长,标记开始挤在一起,我什至有两个地方在同一栋楼上的情况。我知道这种问题以前被问过很多次,我的是关于我正在考虑实现的一个简单的临时解决方法。如果两个地方足够近(就在彼此的顶部!),标准信息窗口会弹出一个 ListView,每一行的设计都像标准气泡(图像、标题、更多信息按钮)。

我的问题是:关于如何创建新的 bonuspack_bubble.xml 布局文件的一些想法或建议。

最佳答案

不知道对你有没有帮助。我需要为我的项目创建一个 CustomInfoBubble。我所做的是,扩展 InfoWindow 默认类,并将我的自定义气泡布局传递给它。是这样的: http://mobiledevstories.wordpress.com/2014/03/01/osmdroid-bonus-pack-markers-with-clickable-infowindows/

我的 Java 类 MapCustomInfoBubble 如下所示:

public class MapCustomInfoBubble extends InfoWindow {

public MapCustomInfoBubble(MapView mapView) {
super(R.layout.map_infobubble_black, mapView);//my custom layout and my mapView
}

@Override
public void onClose() {
//by default, do nothing
}

@Override
public void onOpen(Object item) {
Marker marker = (Marker)item; //the marker on which you click to open the bubble

String title = marker.getTitle();
if (title == null)
title = "";

Button moreInfo = (Button)mView.findViewById(R.id.bubble_moreinfo);//the button that I have in my XML;
moreInfo.setText(title);
moreInfo.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
gotoMoreInfoWindow();//custom method; starts another activity
}
});
}

}

在我的 XML 文件中,我有:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/map_infobubble_black" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView android:id="@+id/bubble_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"
android:maxEms="17"
android:layout_gravity="left"
android:layout_weight="1"
android:text="Title" />
<Button android:id="@+id/bubble_moreinfo"
android:background="@drawable/map_btn_moreinfo"
android:visibility="visible"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_weight="0" />
</LinearLayout>
</LinearLayout>

然后在我代码的其他地方使用:

Marker wp = new Marker(mapView);
wp.setPosition(new GeoPoint(mylocation.getMyLocation()));
wp.setTitle(editTextName.getText().toString());
wp.setInfoWindow(new MapCustomInfoBubble(mapView));
mapView.getOverlays().add(wp);
mapView.invalidate();

在我的代码中,我将 button 上的文本设置为 Marker 的标题。Marker 是我点击的项目。如果您想在同一个 InfoWindow 中(在 ListView 中)放置更多标记的信息,我认为您需要提前知道这些信息是什么。

我相信,您可以在 onOpen() 中放入任何您想要的代码,但是,我不确定这是否是一个好的做法。您可以尝试创建自定义 Constructor 并将您的逻辑放在那里。它应该工作。您需要将 Resource Id(布局)和 mapView 传递给 super 构造函数,以便它返回一个有效的 mView 对象。

关于android - 经典标记重叠的 osmdroid 解决方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22747012/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com