Show text on polygon android Google map v2
问题 I am using polygons on map and I want to have a text on them. Is there any possible way to do this? I tried to put simple text on map point but didn't make it. 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