如何使用Nutiteq包从给定坐标向BasicComponentMap添加标记。 如果使用当前用户位置,则很容易添加标记,但我想在经度和纬度的给定位置设置标记。
感谢。
答案 0 :(得分:2)
我找到了一种方法:
try {
Image poiImage = Image.createImage("/res/drawable/gps_marker.png");
PlaceLabel poiLabel =new PlaceLabel("location");
Place p = new Place(1, poiLabel, poiImage, lon, lat);
mapComponent.addPlace(p);
} catch (IOException e) {
Log.d("MAPA", "Couldn't location marker image.");
}
其中mapComponent是BasicMapComponent。