Polyline p = new Polyline();
List<GeoPoint> pts = new ArrayList<GeoPoint>();
//add your points here
p.setPoints(pts);
//add to map
Marker m = new Marker(mapView);
m.setTitle("Some text here");
//must set the icon last
m.setIcon(null);
m.setPosition(new GeoPoint(marker location here));
//add to map
2条答案
按热度按时间mwngjboj1#
有一种方法可以做到这一点,这是一个选择在标记类的功能。找到示例的最简单方法是使用LatLonGridOverlay。我将在下面将逻辑简化为易于理解的内容。关键是代码的顺序,先设置标题,然后将图标设置为null,再添加到贴图中。你必须根据坐标来确定标记的位置,但它确实有效。
source
hpcdzsge2#
将icon单独设置为null对我不起作用,我需要使用setTextIcon: