gpt4 book ai didi

android - Google map for android 我的位置自定义按钮

转载 作者:IT老高 更新时间:2023-10-28 23:09:14 27 4
gpt4 key购买 nike

如何更改谷歌地图我的位置默认按钮?我设置了我的位置启用和 map 绘制标准图像来查找位置,是否可以更改默认图像?

最佳答案

请参阅下面的 xml 文件到自定义按钮:

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

<fragment
android:id="@+id/maps"
android:name="pl.mg6.android.maps.extensions.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp" >

<ImageView
android:id="@+id/imgMyLocation"
android:layout_width="40dp"
android:layout_height="40dp"
android:scaleType="fitXY"
android:src="@drawable/track_my_location" />
</LinearLayout>

</RelativeLayout>

然后在java类中,声明你的位置按钮:

private ImageView imgMyLocation;
imgMyLocation = (ImageView) findViewById(R.id.imgMyLocation);

点击事件:

imgMyLocation.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
getMyLocation();

}

获取位置方法,即只需传递您当前的纬度和经度。

private void getMyLocation() {
LatLng latLng = new LatLng(Double.parseDouble(getLatitude()), Double.parseDouble(getLongitude()));
CameraUpdate cameraUpdate = CameraUpdateFactory.newLatLngZoom(latLng, 18);
googleMap.animateCamera(cameraUpdate);
}
});

关于android - Google map for android 我的位置自定义按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23883235/

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