7
我在地圖上使用多邊形,我想在它們上面有文本。有沒有可能的方法來做到這一點? 我試圖把簡單的文字放在地圖上,但沒有成功。在多邊形安卓上顯示文本谷歌地圖v2
private void addPolygon(Region reg) {
PolylineOptions polylineOptions = new PolylineOptions();
ArrayList<LatLng> coordList=reg.getAllPoints();
coordList.add(coordList.get(0));
int regColor = reg.getColor();
String regName = reg.getName();
//want to put a name on region
polylineOptions.addAll(coordList);
polylineOptions
.width(5)
.color(Color.BLACK);
if (regColor != 0)
polylineOptions
.color(regColor);
map.addPolyline(polylineOptions);
//text on shape?
}
謝謝你,這是真的很有幫助。 –
不客氣。樂意效勞! – antonio
@noni_methadoni如果此解決方案適合您,請接受此答案,以便其他人也可以使用此方法。 –