gpt4 book ai didi

android - 在 Google Map 版本 2 中将可绘制的图像设置为标记

转载 作者:IT王子 更新时间:2023-10-28 23:42:33 29 4
gpt4 key购买 nike

我正在使用这部分代码在 Google Map Version 2 的 MapFragment 中添加标记。

MarkerOptions op = new MarkerOptions();
op.position(point)
.title(Location_ArrayList.get(j).getCity_name())
.snippet(Location_ArrayList.get(j).getVenue_name())
.draggable(true);
m = map.addMarker(op);
markers.add(m);

我想使用我的可绘制对象中的不同图像。

最佳答案

这就是您如何将 Drawable 设置为 Marker

BitmapDescriptor icon = BitmapDescriptorFactory.fromResource(R.drawable.current_position_tennis_ball)

MarkerOptions markerOptions = new MarkerOptions().position(latLng)
.title("Current Location")
.snippet("Thinking of finding some thing...")
.icon(icon);

mMarker = googleMap.addMarker(markerOptions);

VectorDrawablesXML 基于 Drawables可以使用。

关于android - 在 Google Map 版本 2 中将可绘制的图像设置为标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18053156/

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