我正在使用MapBox并显示设置用户地理编码的引脚。该程序适用于所有api ...除了19,它是一个黑屏。我不知道该怎么做,因为我遵循了这里的文档:
https://www.mapbox.com/android-sdk/examples/marker/
我的代码如下:
摇篮:
compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:4.2.0-beta.1@aar'){
transitive=true
}
compile('com.mapbox.mapboxsdk:mapbox-android-services:1.2.1@aar') {
transitive = true
}
获取mapView
mapView = (MapView) findViewById(R.id.mapView);
mapView.setStyle(Style.MAPBOX_STREETS);
mapView.onCreate(savedInstanceState);
mapView.getMapAsync(this);
地图准备好后回电:
public void onMapReady(MapboxMap mapboxMap) {
// Relevant sources shown only
mapboxMap.setStyleUrl(Style.MAPBOX_STREETS);
mapboxMap.setOnInfoWindowClickListener(this);
CameraPosition cameraPosition = new CameraPosition.Builder()
.target(geocodeLatLng)
.zoom(15)
.bearing(0)
.build();
mapboxMap.moveCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
Marker position = mapboxMap.addMarker(new MarkerOptions().position(geocodeLatLng).title(location));
position.setSnippet(address);
position.showInfoWindow(mapboxMap, mapView);
}
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:mapbox="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
<com.mapbox.mapboxsdk.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
mapbox:style_url="mapbox://styles/mapbox/streets-v9"
mapbox:zoom="11"/>
</RelativeLayout>
还有什么我想念的吗?我还有AndroidManifest.xml和gradle更改。它显然适用于较新的API而不是较旧的API。该网站表示他们支持API 15 +?
答案 0 :(得分:0)
不确定为什么,但这解决了它。以前我在最顶层的MapFragmentActivity中这样做:
MapboxAccountManager.start(this, getString(R.string.access_token));
结果(仔细阅读他们的文档)它应该在MainActivity.java中的app加载上完成。我这样做了,它奏效了。出于某种原因,如果您在setContentView(R.layout.activity_main);
之前在相关课程中执行此操作,但仅适用于较新的设备(不确定区别)。