gpt4 book ai didi

java - 带文字的自定义市场、Google map

转载 作者:行者123 更新时间:2023-12-01 09:05:12 26 4
gpt4 key购买 nike

我的 Android 应用程序的 Google map 中有多个市场但我想要的是下一个作为市场的图标:

enter image description here

取决于我拥有的元素列表。我正在进行多次更改,但原始代码:

 for (int i = 1; i < points.size(); i++) {

googleMap.addMarker(new MarkerOptions()
.position(points.get(i))
.icon(BitmapDescriptorFactory.fromResource(R.drawable.cutedot))
.anchor(0.5f, 1));
}

最佳答案

你只放置标记(我猜绘图中没有数字),

试试这个

for (int i = 1; i < points.size(); i++) {
Bitmap image = BitmapFactory.decodeResource(getResources(), R.drawable.cutedot);
Canvas canvas = new Canvas(bitmap);
canvas.drawText(i+"", textXOffset, textYOffset, mPictoPaint);
MarkerOptions options = new MarkerOptions().position(points.get(i)).anchor(0.5f,1).icon(BitmapDescriptorFactory.fromBitmap(bitmapResul t ));
Marker newMarker = googleMap.addMarker(options);

}

关于java - 带文字的自定义市场、Google map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41337214/

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