0

默认的 Google 地图标记是红色大头针。是否可以通过意图将默认​​标记图像替换为自定义图像?

编辑:这是在发送 geouri 意图以启动外部地图应用程序时。在使用 MapActivity 子类的应用程序中执行此操作时不会。

4

2 回答 2

0

您可以发送一个带有数组中图像位置的整数:

Intent i = new Intent (yourClass.this, MapActivity.class)
i.putExtra("pinPosition",2);
startActivity(i);

在您的地图活动中:

 public class MyMapActivity extends MapActivity {
    private int drawables[] = { R.drawable.pin1, R.drawable.pin2, R.drawable.tutorial_pin3 };
    int position;

    public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            if (getIntent().getSerializableExtra("pinPosition")!=null) {
        position = getIntent().getSerializableExtra("pinPosition");
            }

            setContentView(R.layout.publish_map_activity);
            map = (MapView) findViewById(R.id.mapview);
            ImageView pin = (ImageView) findViewById(R.id.drag);
            pin.setImageResource(drawables[position]);
    ....

    }

    }

如果你使用类似的谷歌代码,你的 xml 应该是:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <com.google.android.maps.MapView
        android:id="@+id/mapview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="@string/googlemaps_key"
        android:clickable="true" />

    <ImageView
        android:id="@+id/drag"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/contentDescription"
        android:src="@drawable/mapitempng"
        android:visibility="gone" />
</RelativeLayout>
于 2012-12-05T12:53:01.463 回答
0

是的。我只是希望我能正确地回答你的问题:你可以通过 Overlay Items 来做到这一点。只需查看Google 本身的这个示例:您可以通过指定可绘制对象来自定义任何标记。

于 2012-12-05T12:39:39.127 回答