Mapbox可以在我的真实设备(三星S8)上显示LocationComponent
的当前位置没有问题,但是我尝试使用Android Pie / Q和地图始终使用多个模拟器(Pixel 2、3、3XL)显示Google总部,而不显示真实位置:
这是我的代码:
class MapFragment : Fragment(), LocationEngineCallback<LocationEngineResult> {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
mapView = view.findViewById(R.id.mapView)
mapView?.onCreate(savedInstanceState)
mapView?.getMapAsync { mapboxMap ->
mapbox = mapboxMap
mapbox.setStyle(Style.MAPBOX_STREETS) {
style -> showUserLocation(style)
}
}
...
@SuppressWarnings("MissingPermission")
private fun showUserLocation(style: Style){
Log.d(TAG, "showUserLocation")
if (PermissionsManager.areLocationPermissionsGranted(homeActivity)){
val locationComponentOptions = LocationComponentOptions.builder(homeActivity)
.bearingTintColor(Color.WHITE)
.accuracyAlpha(0.1f)
.build()
val locationComponentActivationOptions = LocationComponentActivationOptions
.builder(homeActivity, style)
.locationComponentOptions(locationComponentOptions)
.useDefaultLocationEngine(true)
.build()
locationComponent = mapbox.locationComponent
locationComponent?.activateLocationComponent(locationComponentActivationOptions)
locationComponent?.isLocationComponentEnabled = true
locationComponent?.cameraMode = CameraMode.TRACKING
locationComponent?.renderMode = RenderMode.COMPASS
createLocationEngine()
Toast.makeText(homeActivity, "Show location", Toast.LENGTH_LONG).show()
Log.d(TAG, "Show location")
} else {
Toast.makeText(homeActivity, "Permissions not granted", Toast.LENGTH_LONG).show()
}
}
...
@SuppressWarnings("MissingPermission")
private fun createLocationEngine(){
locationEngine = LocationEngineProvider.getBestLocationEngine(homeActivity)
val request = LocationEngineRequest.Builder(LOCATION_INTERVAL)
.setFastestInterval(LOCATION_INTERVAL)
.setPriority(LocationEngineRequest.PRIORITY_HIGH_ACCURACY)
.setMaxWaitTime(MAX_WAIT_TIME)
.build()
locationEngine?.getLastLocation(this)
}
fragment.xml
<com.mapbox.mapboxsdk.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
mapbox:mapbox_cameraZoom="@integer/defaultZoom"
mapbox:mapbox_cameraBearing="34.33"
mapbox:mapbox_cameraZoomMax="@integer/defaultZoom"
mapbox:mapbox_cameraZoomMin="@integer/defaultZoom"
mapbox:mapbox_uiRotateGestures="false"
mapbox:mapbox_uiTiltGestures="false"
mapbox:mapbox_uiScrollGestures="false"
mapbox:mapbox_uiDoubleTapGestures="false" />
知道为什么它不能在模拟器上工作吗?
这是我使用过的仿真器: