我搜索了一个关于如何在我的osmdroid-map上设置一个带有简单图标的Overlay的简单示例,但找不到任何有用的东西..
所以现在我的代码看起来像这样:
private void initOverlay(){
ArrayList<OverlayItem> stationList = new ArrayList<OverlayItem>();
stationList.add(new OverlayItem("Test", "test2", new GeoPoint(lastLoc.getLatitude(), lastLoc.getLongitude())));
ItemizedOverlayWithBubble stationOl = new ItemizedOverlayWithBubble(this,stationList,mapView);
mapView.getOverlays().add(stationOl);
mapView.invalidate();
}
当我运行我的应用程序时,我得到一个ResourceNotFoundException并且在Eclipse中划掉了“ItemizedOverlayWithBubble”..
非常感谢