1
Projemde, haritalarımı programlı olarak bir parçaya yüklüyorum. Ancak, bu haritada işaretçiler eklemek işe yaramıyor. Hiçbir hata gösterilmiyor, ancak işaretçi harita üzerinde de değil.Marker göstermiyor: Google Map Android
specification numaralı telefonu takip ediyorum, bu yüzden neden çalışmadığı konusunda hiçbir fikrim yok.
Benim Parçası Kod
public class MainMapFragment extends Fragment implements OnMapReadyCallback {
SupportMapFragment mMapFragment;
static final LatLng LIBRARY = new LatLng(Lat, Lng);
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
return inflater.inflate(R.layout.main_map_layout,container,false);
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
//Set the initial stage of the map
//It is set on code (not on the xml) because the map is created programmatically
GoogleMapOptions options = new GoogleMapOptions();
CameraPosition ufv_position = new CameraPosition.Builder()
.target(new LatLng(Lat,Lng))
.zoom(15)
.tilt(0)
.bearing(40)
.build();
options.mapType(GoogleMap.MAP_TYPE_NORMAL)
.compassEnabled(false)
.rotateGesturesEnabled(false)
.tiltGesturesEnabled(false)
.camera(ufv_position);
//Load the map with the given options
mMapFragment = SupportMapFragment.newInstance(options);
FragmentTransaction fragmentTransaction =
getChildFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.map, mMapFragment);
fragmentTransaction.commit();
}
@Override
public void onMapReady(GoogleMap googleMap) {
googleMap.addMarker(new MarkerOptions()
.position(LIBRARY)
.title("Library")
.icon(BitmapDescriptorFactory.fromResource(R.drawable.book)));
}
}
Sadece gizli çağrılan
mMapFragment.getMapAsync(this);
ekleyin (işaretleyici ve kameranın Lat ve EUz aynıdır) sorudaki koordinatlar. Ama kamerayı kurduğum yere ayarladım. (Geçerli bir koordinat) –