首页 > 解决方案 > 如何设置 Android 谷歌地图一次显示整个(部分)世界地图?

问题描述

我正在尝试在 android TV (API 29) 上显示一张全球地图,最后在我的电视外观 (img)app:liteMode="true"的帮助下能够看到整个地图

  1. 你能帮我设置一下,这样只有绿色的矩形区域(或者更多没有重复)可见吗?
  2. 是否可以删除红色区域中的按钮?原因是模式app:liteMode="true"

MainActivity.kt

import android.app.Activity
import android.os.Bundle
import android.widget.Toast
import com.google.android.gms.maps.CameraUpdateFactory
import com.google.android.gms.maps.GoogleMap
import com.google.android.gms.maps.MapsInitializer
import com.google.android.gms.maps.model.LatLng
import com.google.android.gms.maps.model.LatLngBounds
import com.google.android.gms.maps.model.MarkerOptions
import kotlinx.android.synthetic.main.activity_main.*

class MainActivity : Activity() {
    private lateinit var mMap: GoogleMap
    private val center = LatLng(.0, .0)
    private val mine = LatLngBounds(
        LatLng(-30.0,150.0), LatLng(30.0, -150.0)
    )
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        with(mapView) {
            // Initialise the MapView
            onCreate(null)
            // Set the map ready callback to receive the GoogleMap object
            getMapAsync{
                MapsInitializer.initialize(applicationContext)
                setMapLocation(it)
            }
        }
    }

    private fun setMapLocation(map : GoogleMap) {
        with(map) {
            moveCamera(CameraUpdateFactory.newLatLngZoom(center, 1f))
            addMarker(MarkerOptions().position(center))
            mapType = GoogleMap.MAP_TYPE_NORMAL
            setOnMapClickListener {
                Toast.makeText(this@MainActivity, "Clicked on map", Toast.LENGTH_SHORT).show()
            }
        }
    }

    override fun onResume() {
        super.onResume()
        mapView.onResume()
    }

    override fun onPause() {
        super.onPause()
        mapView.onPause()
    }

    override fun onDestroy() {
        super.onDestroy()
        mapView.onDestroy()
    }

    override fun onLowMemory() {
        super.onLowMemory()
        mapView.onLowMemory()
    }
}

activity_main.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=".MainActivity">

    <com.google.android.gms.maps.MapView
        android:id="@+id/mapView"
        android:layout_width="match_parent"
        android:layout_height="460dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:liteMode="true" />
</androidx.constraintlayout.widget.ConstraintLayout>

标签: androidgoogle-mapskotlinandroid-mapviewandroid-tv

解决方案


检查此以删除红色区域按钮:

@Override
public void onMapReady(GoogleMap googleMap) {
    googleMap.getUiSettings().setMapToolbarEnabled(false);

    // Do other staff
}

另外,请检查此答案-> https://stackoverflow.com/a/46059720/8399393

我希望有用:)


推荐阅读