我尝试使用 Google Maps API v2 (Android)进行以下活动。生成的 API 密钥正在运行,并且 manifest.xml 中的必要权限已相应声明。
这是活动类 MapView.java 的代码,它引用了 xml 布局 Google_Map.xml:
**Map View.java**
public class MapView extends Activity implements LocationListener {
private GoogleMap googleMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_google_map);
int status= GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());
if(status!=ConnectionResult.SUCCESS){
int reqCode=10;
Dialog diag= GooglePlayServicesUtil.getErrorDialog(status,this,reqCode);
}
else{
buildMap();
}
}
private void buildMap(){
if(googleMap==null){
googleMap= ((MapFragment)getFragmentManager().findFragmentById(R.id.map)).getMap();
googleMap.setMyLocationEnabled(true);
googleMap.getUiSettings().setMyLocationButtonEnabled(true);
LocationManager locManager= (LocationManager)getSystemService(LOCATION_SERVICE);
Criteria criteria= new Criteria();
String provider= locManager.getBestProvider(criteria,true);
Location location= locManager.getLastKnownLocation(provider);
if(googleMap==null){
Toast.makeText(this,"Unable to initialise map at the moment...",Toast.LENGTH_SHORT).show();
}
if(location!=null){
onLocationChanged(location);
}
locManager.requestLocationUpdates(provider,20000,0,this);
}
}
@Override
public void onLocationChanged(Location loc){
double lat= loc.getLatitude();
double lng=loc.getLongitude();
LatLng latlng= new LatLng(lat,lng);
googleMap.moveCamera(CameraUpdateFactory.newLatLng(latlng));
googleMap.animateCamera(CameraUpdateFactory.zoomTo(15));
}
@Override
public void onProviderDisabled(String provider){}
@Override
public void onProviderEnabled(String provider){}
@Override
public void onStatusChanged(String provider,int status, Bundle extra){}
@Override
protected void onResume(){
super.onResume();
buildMap();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.google_map, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
布局文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.example.hotel.moeccefamilytime.MapView">
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"/>
</RelativeLayout>
我对 Android 的体验非常基础,这是我第一个结合 Google 地图为用户提供地理功能以获取到特定地点的路线的项目。
这是调试时发生的错误;相机不会放大当前位置。(已在手机上激活位置设置)
以下是已提供但解决方案不适用于我的案例的以下参考资料:
- 找不到从方法 glt.a 引用的类 'com.google.android.gms.location.internal.ParcelableGeofence'
- 找不到从方法 gps.a 引用的类“gpr”
- 找不到从方法 glt.a 引用的类 'com.google.android.gms.location.internal.ParcelableGeofence
如果你能指出我正确的方向,非常感谢。