0
當我放大和縮小Google Maps V2時,我可以自動增加和減少折線寬度嗎?Android通過縮放級別(Google Maps V2)增加折線寬度
它看起來很可怕,特別是在新設備保持非常薄時。但是當你縮小時,你需要這麼瘦。
當我放大和縮小Google Maps V2時,我可以自動增加和減少折線寬度嗎?Android通過縮放級別(Google Maps V2)增加折線寬度
它看起來很可怕,特別是在新設備保持非常薄時。但是當你縮小時,你需要這麼瘦。
將折線添加到地圖時保存。然後在折線上執行操作。
將折線添加到地圖時將折線保存到ArrayList的示例。
polylines = new ArrayList<Polyline>();
protected void onProgressUpdate(PolylineOptions... progress) {
if (isCancelled()) {
return;
}
if (progress[0] != null) {
// add the poly line to the map
// save the polyline for later user
if (mMap != null) {
polylines.add(mMap.addPolyline(progress[0]));
}
}
}
同時回到了代碼行爲的折線
polylines.get(0).setWidth(width)
或
for (Polyline po: polylines){
po.setWidth(newWidth);
}
你在你自己的代碼變焦mMap.setOnCameraChangeListener(聽衆) – danny117 2014-09-10 19:38:00