1

。我希望知道這是更容易或建立在覆蓋更容易。我想要一個由Google支持的空白地圖。我會在需要的時候添加需要的地方或對象,這可能嗎? maps.clear()沒有添加任何幫助,我想onCreate()方法或onStart()方法刪除所有的地方,並有一個空白的地圖,沒有地方只是道路和建築物。從谷歌地圖刪除默認對象API V2我想從谷歌地圖中刪除所有的默認對象或地方

public void onMapReady(GoogleMap googleMap) { 
    mMap = googleMap; 
    mapReady = true; 
    Double latitude = location.getLatitude(); 
    Double longitude = location.getLongitude(); 
    if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) { 
     // TODO: Consider calling 
     // ActivityCompat#requestPermissions 
     // here to request the missing permissions, and then overriding 
     // public void onRequestPermissionsResult(int requestCode, String[] permissions, 
     //           int[] grantResults) 
     // to handle the case where the user grants the permission. See the documentation 
     // for ActivityCompat#requestPermissions for more details. 
     return; 
    } 
    mMap.setMyLocationEnabled(true); 
    // Add a marker in Sydney and move the camera 
    //LatLng sydney = new LatLng(-34, 151); 
    LatLng currentPosition = new LatLng(latitude,longitude); 
    mMap.addMarker(new MarkerOptions().position(currentPosition).title("Current Location")); 
    mMap.moveCamera(CameraUpdateFactory.newLatLng(currentPosition)); 
    mMap.animateCamera(CameraUpdateFactory.zoomTo(15)); 
    mMap.setMapType(); 
    loadNearByPlaces(latitude,longitude); 
} 

這是我使用的開始代碼。如何修改它,並讓它做我需要的?

回答