Googleマップv2を完璧にセットアップしましたが、現在の場所(現在のピン)のズームレベルを設定する方法がわかりません。何かアイデアがあれば、私と共有してください。ありがとう。
質問する
438 次
2 に答える
1
GoogleMap theMap;
//in the below function pass your LatLang and the zoom level
theMap.animateCamera(CameraUpdateFactory.newLatLngZoom(Your Pin LatLangPoint, 14));
于 2013-06-25T12:13:46.380 に答える
1
私の場合、配列からジオポイントを取得しています。同様のことを試すか、コードを変更してから、mapcontroller を使用してズーム レベルを設定できます。
private MapController mapController;
GeoPoint[] mallCoords;
mallCoords = new GeoPoint[24];
mallCoords[0] = new GeoPoint(28701067, 77116834);//this is just an example
mapController.animateTo(mallCoords[0]);
mapController.setZoom(15);
于 2013-06-25T12:24:26.683 に答える