Google地图中的代码段

时间:2012-02-28 03:33:05

标签: android google-maps

我正在尝试添加这个,在添加“arrPlace.get(i).getPlaceID()。toString()”之前,一切正常并且图标出现在我的地图上,但在添加该特定语句后,它确实不。 Snippet可以有任何长度限制吗?

 placesOverlay.add(new OverlayItem(
                new GeoPoint(
                    (int)(Double.parseDouble(arrPlace.get(i).getLat().toString())*1E6),
                    (int)(Double.parseDouble(arrPlace.get(i).getLng().toString())*1E6)), 
                    arrPlace.get(i).getPlaceName().toString(), 
                    arrPlace.get(i).getPlaceID().toString()+"/"+arrPlace.get(i).getType().toString()));

编辑1:显然,即使没有arrPlace.get(i).getType()。toString()的arrPlace.get(i).getPlaceID()。toString()也会导致图标无法在我的地图上显示。 / p>

0 个答案:

没有答案