如何在Android上通过MapKit使用自定义地标而不是像这样的标准图钉?enter image description here
答案 0 :(得分:0)
如果您准备使用图像或图标,则可以轻松使用这些代码
if (yandexMap != null) {
return yandexMap.getMap().getMapObjects().addPlacemark(
point, ImageProvider.fromBitmap(icon), new IconStyle().setFlat(flatStatus)
.setRotationType(rotationType)
.setScale(SCALE_VALUE)
.setAnchor(ANCHOR_VALUE));
}
您可以从资源,资产和文件中设置图标。 图标样式是可选的。
要在地图位置设置标记的点。
有关更多信息,请检查Yandex MapKit Documentation
希望它能起作用。