标记图标中的Android Google Maps API字符串
作者:互联网
有什么方法可以将String的值放在Google Maps API 2.0的标记图标中?
喜欢这张图片
以一种简单的方式.有点像这样:
map.addMarker(new MarkerOptions()
.position(POSITION)
.title("Your title")
.icon(HERE PUT MY VAR STRING)
);
解决方法:
您可以使用Google Maps API Utility Library并使用气泡图标自定义标记:
IconGenerator iconFactory = new IconGenerator(this);
MarkerOptions markerOptions = new MarkerOptions().
icon(BitmapDescriptorFactory.fromBitmap(iconFactory.makeIcon("Your text"))).
position(new LatLng(-33.8696, 151.2094)).
anchor(iconFactory.getAnchorU(), iconFactory.getAnchorV());
标签:icons,google-maps,google-maps-markers,string,android 来源: https://codeday.me/bug/20191027/1940811.html