我正在开发一个Android应用程序,我正在使用Google Map API v2.我需要在地图上显示带有自定义标记的用户位置.
每个标记将从URL显示用户的图片.必须从服务器以异步模式下载映像.有关示例,请参见随附的屏幕截图.
如何在标记中添加图像和自定义信息?

我通过以下方式将默认标记添加到GoogleMap:
GoogleMap map = ((MapFragment) getFragmentManager().findFragmentById(R.id.editMapMap)).getMap();
MarkerOptions markerOptions = new MarkerOptions();
markerOptions.position(currentLocation.getCoordinate());
markerOptions.title(Utils.getLocationString(currentLocation.getCoordinate()));
markerOptions.snippet("Blah");
locationMarker = map.addMarker(markerOptions);
locationMarker.setDraggable(true);
Run Code Online (Sandbox Code Playgroud)
如何让标记始终显示标题和片段而不触摸?我也想禁用隐藏它们.