我想用我自己的图像替换 Android Maps V2 用于“我的位置”的默认图标。我创建了自己的图块提供程序,它引入了一些主要是蓝色的地图,因此默认的“我的位置”图标,即蓝色的小箭头,很难看到。
以前我只是重写了 的 draw 方法MyLocationOverlay
,但新 API 中似乎没有。
我还需要图标能够旋转,就像箭头一样,取决于你面对的方向。所以我不能只使用普通的标记。基本上我只需要为那个箭头创建一个自定义图像。
我想用我自己的图像替换 Android Maps V2 用于“我的位置”的默认图标。我创建了自己的图块提供程序,它引入了一些主要是蓝色的地图,因此默认的“我的位置”图标,即蓝色的小箭头,很难看到。
以前我只是重写了 的 draw 方法MyLocationOverlay
,但新 API 中似乎没有。
我还需要图标能够旋转,就像箭头一样,取决于你面对的方向。所以我不能只使用普通的标记。基本上我只需要为那个箭头创建一个自定义图像。
我简单的解决方法就是禁用谷歌地图的“我的位置”
并使用我的图标在地图上创建 ImageView,然后使用
onClick 和 getMyLocation , onClick 中的 animateCamera
this.mGoogleMap.getUiSettings().setMyLocationButtonEnabled(false);
this.mGoogleMap.setMyLocationEnabled(true);
.
@Override
public void onClick(final View v) {
Location location = this.mGoogleMap.getMyLocation();
if (location != null) {
LatLng target = new LatLng(location.getLatitude(), location.getLongitude());
CameraPosition position = this.mGoogleMap.getCameraPosition();
Builder builder = new CameraPosition.Builder();
builder.zoom(15);
builder.target(target);
this.mGoogleMap.animateCamera(CameraUpdateFactory.newCameraPosition(builder.build()));
}
}
Google Play 服务的最新更新现在允许您使用“平面”标记并旋转它们,这正是我所需要的。这是我实现它的方式的简单版本。我可能可以做一些事情来优化和调整动画,但它暂时可以完成这项工作。欢迎任何反馈。
Marker mPositionMarker;
GoogleMap mMap;
@Override
public void onLocationChanged(Location location) {
if (location == null)
return;
if (mPositionMarker == null) {
mPositionMarker = mMap.addMarker(new MarkerOptions()
.flat(true)
.icon(BitmapDescriptorFactory
.fromResource(R.drawable.positionIndicator))
.anchor(0.5f, 0.5f)
.position(
new LatLng(location.getLatitude(), location
.getLongitude())));
}
animateMarker(mPositionMarker, location); // Helper method for smooth
// animation
mMap.animateCamera(CameraUpdateFactory.newLatLng(new LatLng(location
.getLatitude(), location.getLongitude())));
}
public void animateMarker(final Marker marker, final Location location) {
final Handler handler = new Handler();
final long start = SystemClock.uptimeMillis();
final LatLng startLatLng = marker.getPosition();
final double startRotation = marker.getRotation();
final long duration = 500;
final Interpolator interpolator = new LinearInterpolator();
handler.post(new Runnable() {
@Override
public void run() {
long elapsed = SystemClock.uptimeMillis() - start;
float t = interpolator.getInterpolation((float) elapsed
/ duration);
double lng = t * location.getLongitude() + (1 - t)
* startLatLng.longitude;
double lat = t * location.getLatitude() + (1 - t)
* startLatLng.latitude;
float rotation = (float) (t * location.getBearing() + (1 - t)
* startRotation);
marker.setPosition(new LatLng(lat, lng));
marker.setRotation(rotation);
if (t < 1.0) {
// Post again 16ms later.
handler.postDelayed(this, 16);
}
}
});
}
从 3.1.36 开始,您无法更改图标(我觉得它将来会更改,但从 API v2 改进实施的速度来看,不会在圣诞节之前)。
但是,您现在可以使用标记,因为它具有setIcon
功能。
基本上你必须忘记GoogleMap.setMyLocationEnabled
,因为它总是会出现在上面。相反,您将创建自己的LocationClient
并使用 lat、long 和 Bearing fromLocation
来更新Marker
. 另外添加一个Circle
并使用准确度来产生类似于默认 myLocation 可视化的效果。
您无法处理 Google 地图上 MyLocation 按钮的单击事件,是的,但是有一个技巧可以让您根据需要获得行为:
首先在您的 layout.xml 文件中添加地图和虚拟 MyLocation 按钮。
您可以在相对布局的帮助下实现这一点:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/myLocationButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:background="@drawable/mylocation" />
</RelativeLayout>
您可以使用“mylocation.png”,就像您在 Google 地图上看到的一样。
LocationManager locationManager = (LocationManager)getSystemService(LOCATION_SERVICE);
Criteria criteria = new Criteria();
String s = locationManager.getBestProvider(criteria, false);
Location location = locationManager.getLastKnownLocation(s);
调用您的虚拟 MyLocation 按钮的单击事件,您将在其中添加标记
private GoogleMap googleMap;
googleMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());
googleMap.addMarker(new MarkerOptions().icon(YOUR_MODIFIED_ICON).position(latLng).title(TITLE).snippet(SNIPET));
通过这种方式您可以修改 Google 地图的默认图标。
是的,您还需要设置缩放级别:
googleMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
这是访问位置按钮的代码:
View mv=findViewById(R.id.map);
View locationButton = ((View) mv.findViewById(Integer.parseInt("1")).getParent()).findViewById(Integer.parseInt("2"));
RelativeLayout.LayoutParams rlp = (RelativeLayout.LayoutParams) locationButton.getLayoutParams();
// position on right bottom
rlp.addRule(RelativeLayout.ALIGN_PARENT_TOP, 0);
rlp.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
rlp.setMargins(0, 180, 180, 0);
试试这个; 我使用它在地图上绘制路线,但我为标记和我的位置设置图标声明这个以查看您的位置:
LocationManager locationManager = (LocationManager)
getSystemService(LOCATION_SERVICE);
Criteria criteria = new Criteria();
String provider = locationManager.getBestProvider(criteria, true);
Location myLocation= locationManager.getLastKnownLocation(provider);
longitude = myLocation.getLongitude();
latitude = myLocation.getLatitude();
fromPosition = new LatLng(latitude, longitude);
并创建一个这样的函数,我用于在地图上绘制,但我在标记和我的位置上设置了图标:
mGoogleMap.clear();
if(response.equalsIgnoreCase("Success"))
{
ArrayList<LatLng> directionPoint = v2GetRouteDirection.getDirection(document);
PolylineOptions rectLine = new PolylineOptions().width(7).color(Color.BLUE);
for (int i = 0; i < directionPoint.size(); i++) {
rectLine.add(directionPoint.get(i));
}
// Adding route on the map
mGoogleMap.setOnMarkerClickListener(MainActivity.this);
mGoogleMap.addPolyline(rectLine);
markerOptions.position(fromPosition);
markerOptions.draggable(true);
Marker1 = mGoogleMap.addMarker(new MarkerOptions()
.position(Estadio)
.title("Estadio Cuscatlan")
.snippet("Estadio Cuscatlan")
.icon(BitmapDescriptorFactory
.fromResource(R.drawable.mapmarker)));
Marker2 = mGoogleMap.addMarker(new MarkerOptions()
.position(Metrocentro)
.title("Metrocentro")
.snippet("Metrosuelo")
.icon(BitmapDescriptorFactory
.fromResource(R.drawable.mapmark
Marker3 = mGoogleMap.addMarker(new MarkerOptions()
.position(Mejicanos)
.title("Mejicanos")
.snippet("Mejicanos")
.icon(BitmapDescriptorFactory
.fromResource(R.drawable.mapmarker)));
MarkerMe = mGoogleMap.addMarker(new MarkerOptions()
.position(fromPosition)
.icon(BitmapDescriptorFactory
.fromResource(R.drawable.car64)));
}
Dialog.dismiss();
}
}