2016-05-25 130 views
0

我是Android新手,完全不熟悉Android中的Google地圖實施。我有一個應該顯示Google地圖的片段,但是我希望它默認打開奧斯陸城市的地圖。我嘗試了幾件事,但沒有奏效。它只是顯示了非洲附近的世界地圖。Google Map Fragment默認位置

這裏是我的代碼:

MapFragment.java

import android.os.Bundle; 
import android.support.v4.app.FragmentActivity; 

import com.google.android.gms.maps.CameraUpdateFactory; 
import com.google.android.gms.maps.GoogleMap; 
import com.google.android.gms.maps.OnMapReadyCallback; 
import com.google.android.gms.maps.SupportMapFragment; 
import com.google.android.gms.maps.model.LatLng; 
import com.google.android.gms.maps.model.MarkerOptions; 

public class MapFragment extends FragmentActivity implements OnMapReadyCallback { 

private GoogleMap mMap; 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_map_fragment); 
    ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)) 
      .getMapAsync(this); 
} 

@Override 
public void onMapReady(GoogleMap googleMap) { 
    mMap = googleMap; 
    setUpMap(); 
} 

private void setUpMap() { 
    LatLng latLng = new LatLng(59.95, 10.75); 

    mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng)); 

    mMap.animateCamera(CameraUpdateFactory.zoomTo(14)); 

} 
} 

activity_map_fragment.xml

<?xml version="1.0" encoding="utf-8"?> 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<com.google.android.gms.maps.MapView 
    android:id="@+id/mapView" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    class="com.google.android.gms.maps.SupportMapFragment" /> 
</LinearLayout> 
+0

佈局MapView類的ID MapView類,但在代碼R.id.map,它們必須是相同的 – Blackkara

+0

使用這些代碼 59.977988 ,10.606613 – Dharmaraj

回答

0

試試這個,

在XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" android:layout_width="match_parent" 
android:layout_height="match_parent"> 
    <fragment xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/mapView" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     class="com.google.android.gms.maps.SupportMapFragment" /> 
</LinearLayout> 

代碼,

SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapView); 
mapFragment.getMapAsync(this); 

而在去年,相機

LatLng latLng = new LatLng(59.95, 10.75); 
mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 17)); 
+0

我糾正了這個id,並試了你的代碼。它仍然不起作用 – Edd

+0

不,它不工作。再次顯示世界地圖。 – Edd

+0

事實上,它現在正在工作......非常感謝... – Edd