0

我需要在我的应用程序中显示带有标记的地图。显示标记,但不显示地图。

    gps = new GPSTracker(this);
    map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();

    // check if GPS enabled
    if(gps.canGetLocation()){
        double latitude = gps.getLatitude();
        double longitude = gps.getLongitude();
        final LatLng STANDORT = new LatLng(latitude, longitude);
        map.addMarker(new MarkerOptions().position(STANDORT)
                .title(getString(R.string.standort)));
    }
        .
        .
        map.moveCamera(CameraUpdateFactory.newLatLngZoom(STANDORT, 12));
4

0 回答 0