Попытка добавить маркер к фрагменту карт Google в Android Studio.Код запускается успешно, отображая маркер на карте, когда код запускается на устройстве Android, однако при попытке запуска на эмуляторе маркеры никогда не отображаются
marker = mMap.addMarker(new MarkerOptions()
.position(new LatLng(point.getLat(), point.getLongi()))
.title("Point: " +point.getID())
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_CYAN))
);
marker.setSnippet("Latitude: " + point.getLat() + "\nLongitude: " + point.getLongi() + "\nDescription: " + point.getDesc() + "\nLight at " + point.getTime() + " : " + point.getLight());
marker.setTag(point.getID());
markers.add(marker);
marker.setVisible(true);
Ожидается: маркер покажет себя на карте Фактически:маркер не отображается
По какой-то причине этот маркер все же отображается:
mMap.addMarker(new MarkerOptions()
.position(new LatLng(10, 10))
.title("Hello world"));
XML:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include
android:id="@+id/include"
layout="@layout/content_main" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"/>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="382dp"
map:layout_anchor="@+id/include"
map:layout_anchorGravity="bottom|center"
tools:context=".MapsActivity" />
</android.support.design.widget.CoordinatorLayout>
Исправлено, собираюсь оставить это как доказательство моего позора, маркер был на карте, но эмулятор был установлен в Северной Америке.В своей глупости я не уменьшал масштаб и не видел этого, он никогда не ломался с самого начала