删除默认用户的位置图标 [英] Remove default user's location icon

查看:63
本文介绍了删除默认用户的位置图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用适用于Android的Google Maps v2开发一个应用程序,我设法将自定义图标放置在用户的位置,但是我无法删除默认图标,因此它像图像中一样覆盖了我的自定义图标:

Im developing an app using Google Maps v2 for Android and I managed to put a custom icon to the user's position but I can't remove the default one, so it overlays my custom icon like in the image:

(这是现在那么大的东西:p)

(It is that big just for now :p )

我的代码如下:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_map);

    map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();

    map.setMyLocationEnabled(true);

    map.setOnMyLocationChangeListener(new OnMyLocationChangeListener() {

        @Override
        public void onMyLocationChange(Location location) {
            if (location == null)
                return;

            mPositionMarker = map.addMarker(new MarkerOptions()
            .flat(true)
            .icon(BitmapDescriptorFactory
                    .fromResource(R.drawable.logop1))
            .anchor(0.5f, 1f)
            .position(new LatLng(location.getLatitude(), location.getLongitude())));

        }
    });
}

所以: 1)是否可以删除用户当前位置的默认蓝点?

So: 1) Is there a way to remove the default blue dot of user's current location?

2)当我在现实世界"中移动时,是否会更新用户位置(由于连接性原因我无法对其进行测试),还是我必须编写/重写一种方法来更新用户位置?

2) Will the user location be updated when I move in the "real world" (I cant test it for conectivity reasons) or do I have to write/override a method to update users position?

预先感谢

推荐答案

感谢joao2fast4u(lol)和ṁᾶƔƏň.我遵循了您的建议,并设法使它起作用.由于我没有看到针对此问题的具体答案,因此将解决方案发布在这里:

Thanks joao2fast4u (lol) and ṁᾶƔƏň ツ. I followed your recomendations and I managed to make it work. Since I didn't see any answer concrete to this problem I'm posting my solution here:

package com.onsoftwares.ufvquest;
import android.location.Location;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.View;
import android.widget.Toast;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesClient;
import com.google.android.gms.location.LocationClient;
import com.google.android.gms.location.LocationListener;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;

public class MapActivity extends ActionBarActivity implements LocationListener, GooglePlayServicesClient.ConnectionCallbacks, GooglePlayServicesClient.OnConnectionFailedListener  {

private GoogleMap map;
private Marker mPositionMarker;
private LocationClient mLocationClient;
private LocationRequest mLocationRequest;
private LatLng mLatLng;

private boolean mUpdatesRequested = false;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_map);

    map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();

    mLocationClient = new LocationClient(this, this, this);

    mLocationRequest = LocationRequest.create();

    mLocationRequest.setInterval(5000);

    mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);

    // Set the interval ceiling to one minute
    mLocationRequest.setFastestInterval(1000);

    // Note that location updates are off until the user turns them on
    mUpdatesRequested = false;
}

@Override
protected void onStart() {
    super.onStart();
    mLocationClient.connect();
};

@Override
protected void onStop() {
    if (mLocationClient.isConnected()) {
        mLocationClient.removeLocationUpdates(this);
        mLocationClient.disconnect();
    }
    super.onStop();
};

@Override
public void onConnectionFailed(ConnectionResult arg0) {
    // TODO Auto-generated method stub

}

@Override
public void onConnected(Bundle arg0) {
    mLocationClient.requestLocationUpdates(mLocationRequest, this);
}

@Override
public void onDisconnected() {
    // TODO Auto-generated method stub

}

@Override
public void onLocationChanged(Location location) {
    // Get the current location
    Location currentLocation = mLocationClient.getLastLocation();

    // Display the current location in the UI
    if (currentLocation != null) {
        LatLng currentLatLng = new LatLng (currentLocation.getLatitude(), currentLocation.getLongitude());
        if (mPositionMarker == null) {
            mPositionMarker = map.addMarker(new MarkerOptions()
                            .position(currentLatLng)
                            .title("Eu")
                            .icon(BitmapDescriptorFactory.fromResource(R.drawable.male_user_marker)));
            map.moveCamera(CameraUpdateFactory.newLatLngZoom(currentLatLng, 15));
        } else
            mPositionMarker.setPosition(currentLatLng);
    }
}
}

这篇关于删除默认用户的位置图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆