请帮助我如何在谷歌地图上设置标记,如图像(即)中给定的形状。
提前致谢。
答案 0 :(得分:0)
这样你可以设置图像。
BitmapDescriptor icon = BitmapDescriptorFactory.fromResource(R.drawable.proiflepic)
MarkerOptions markerOptions = new MarkerOptions().position(latLng)
.title("Current Location")
.snippet("Thinking of finding some thing...")
.icon(icon);
mMarker = googleMap.addMarker(markerOptions);
答案 1 :(得分:0)
MarkerOptions userlocmarker = new MarkerOptions();
userlocmarker.position(new LatLng(userlatitude, userlongitude));
userlocmarker.icon(BitmapDescriptorFactory.fromResource(R.drawable.usermarker));
userlocmarker.title(getActivity().getResources().getString(R.string.here));
userlocmarker.snippet("");
map.addMarker(userlocmarker);
这里R.drawable.usermarker是你的形象..