简体   繁体   English

适用于Android的Tomtom Maps SDK无法加载图块

[英]Tomtom Maps sdk for android failed to load tile

I'm trying to add TomTom maps to my android application that is built with Kotlin , but it gives me the error Tomtom Maps SDK for android failed to load tile and shows an empty map as shown in the image below : 我正在尝试将TomTom地图添加到使用Kotlin构建的android应用程序中,但它给我的错误是Tomtom Maps SDK for android failed to load tile并显示了一个空地图,如下图所示:

断层图无法加载图块

And here are my files and detailed configurations I'm using: 这是我正在使用的文件和详细配置:

  • In the project level Gradle file I have : 在项目级别的Gradle文件中,我有:
    allprojects {
    repositories {
        google()
        jcenter()
        maven {
            url "https://maven.tomtom.com:8443/nexus/content/repositories/releases/"
        }
    }
}

  • In the app level Gradle file I have : 在应用程序级别的Gradle文件中,我有:

    dependencies {
    implementation("com.tomtom.online:sdk-maps:2.4244")
}

  • And I've added the APK to the AndroidManifests file : 而且我已将APK添加到AndroidManifests文件中:
    <meta-data
        android:name="OnlineMaps.Key"
        android:value="<my-Key-here>" />
  • Also, the map fragment is added to the .XML files : 同样,将地图片段添加到.XML文件中:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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=".MapActivity">

    <fragment
        android:id="@+id/mapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:name="com.tomtom.online.sdk.map.MapFragment"
        />


</androidx.constraintlayout.widget.ConstraintLayout>
  • And finally, here is the Kotlin code used to start the map : 最后,这是用于启动地图的Kotlin代码:

    //lateinit late initialization of non-null type variables
    private lateinit var map: TomtomMap
    private lateinit var fusedLocationClient: FusedLocationProviderClient
    private lateinit var lastLocation: Location

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_map)
        val mapFragment = supportFragmentManager
            .findFragmentById(R.id.mapFragment) as MapFragment
        mapFragment.getAsyncMap(this)
        fusedLocationClient = LocationServices.getFusedLocationProviderClient(this)

    }


    companion object {
        private const val LOCATION_PERMISSION_REQUEST_CODE = 101
    }
    private fun setUpMap() {
        if (ActivityCompat.checkSelfPermission(this,
                android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            ActivityCompat.requestPermissions(this,
                arrayOf(android.Manifest.permission.ACCESS_FINE_LOCATION), LOCATION_PERMISSION_REQUEST_CODE)
            return
        }
        map.isMyLocationEnabled = true
        fusedLocationClient.lastLocation.addOnSuccessListener(this) {
                location ->
            if (location != null){
                lastLocation = location
                val currentLatLng = LatLng(location.latitude, location.longitude)
                val balloon = SimpleMarkerBalloon("You are Here")
                map.addMarker(MarkerBuilder(currentLatLng).markerBalloon(balloon))
                map.centerOn(CameraPosition.builder(currentLatLng).zoom(7.0).build())

            }

        }
    }


    override fun onMapReady(@NonNull tomtomMap: TomtomMap) {
        this.map = tomtomMap
        setUpMap()
    }

Two possible points to check: 检查两个可能的点:

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM