Добавление карты с маркером

Из этого туториала вы узнаете, как добавить карту Google в приложение Android. На карте имеется маркер, также называемый булавкой, для обозначения конкретного местоположения.

Следуйте инструкциям, чтобы создать приложение для Android с помощью Maps SDK для Android. Рекомендуемая среда разработки — Android Studio .

Получить код

Клонируйте или загрузите репозиторий образцов Google Maps Android API v2 с GitHub.

Просмотрите Java-версию действия:

    // Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.example.mapwithmarker;

import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;

import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

/**
 * An activity that displays a Google map with a marker (pin) to indicate a particular location.
 */
public class MapsMarkerActivity extends AppCompatActivity
        implements OnMapReadyCallback {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // Retrieve the content view that renders the map.
        setContentView(R.layout.activity_maps);

        // Get the SupportMapFragment and request notification when the map is ready to be used.
        SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);
    }

    /**
     * Manipulates the map when it's available.
     * The API invokes this callback when the map is ready to be used.
     * This is where we can add markers or lines, add listeners or move the camera. In this case,
     * we just add a marker near Sydney, Australia.
     * If Google Play services is not installed on the device, the user receives a prompt to install
     * Play services inside the SupportMapFragment. The API invokes this method after the user has
     * installed Google Play services and returned to the app.
     */
    @Override
    public void onMapReady(GoogleMap googleMap) {
        // Add a marker in Sydney, Australia,
        // and move the map's camera to the same location.
        LatLng sydney = new LatLng(-33.852, 151.211);
        googleMap.addMarker(new MarkerOptions()
            .position(sydney)
            .title("Marker in Sydney"));
        googleMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
    }
}

    

Просмотрите версию активности Kotlin:

    // Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.example.mapwithmarker

import android.os.Bundle
import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity
import com.google.android.gms.maps.CameraUpdateFactory
import com.google.android.gms.maps.GoogleMap
import com.google.android.gms.maps.OnMapReadyCallback
import com.google.android.gms.maps.SupportMapFragment
import com.google.android.gms.maps.model.LatLng
import com.google.android.gms.maps.model.MarkerOptions

/**
 * An activity that displays a Google map with a marker (pin) to indicate a particular location.
 */
class MapsMarkerActivity : AppCompatActivity(), OnMapReadyCallback {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        // Retrieve the content view that renders the map.
        setContentView(R.layout.activity_maps)

        // Get the SupportMapFragment and request notification when the map is ready to be used.
        val mapFragment = supportFragmentManager.findFragmentById(R.id.map) as? SupportMapFragment
        mapFragment?.getMapAsync(this)
    }

    override fun onMapReady(googleMap: GoogleMap) {
      val sydney = LatLng(-33.852, 151.211)
      googleMap.addMarker(
        MarkerOptions()
          .position(sydney)
          .title("Marker in Sydney")
      )
      googleMap.moveCamera(CameraUpdateFactory.newLatLng(sydney))
    }
}

    

Настройте свой проект разработки

Выполните следующие действия, чтобы создать учебный проект в Android Studio.

  1. Загрузите и установите Android Studio.
  2. Добавьте пакет сервисов Google Play в Android Studio.
  3. Клонируйте или загрузите репозиторий образцов Google Maps Android API v2, если вы этого не сделали, когда начали читать это руководство.
  4. Импортируйте учебный проект:

    • В Android Studio выберите «Файл» > «Создать» > «Импортировать проект» .
    • Перейдите в папку, в которой вы сохранили репозиторий образцов Google Maps Android API v2 после его загрузки.
    • Найдите проект MapWithMarker по этому адресу:
      PATH-TO-SAVED-REPO /android-samples/tutorials/java/MapWithMarker (Java) или
      PATH-TO-SAVED-REPO /android-samples/tutorials/kotlin/MapWithMarker (Kotlin)
    • Выберите каталог проекта, затем нажмите «Открыть» . Android Studio теперь собирает ваш проект, используя инструмент сборки Gradle.

Включите необходимые API и получите ключ API

Для работы с этим руководством вам понадобится проект Google Cloud с включенными необходимыми API и ключ API, авторизованный для использования Maps SDK для Android. Более подробную информацию см.:

Добавьте ключ API в свое приложение

  1. Откройте файл local.properties вашего проекта.
  2. Добавьте следующую строку и замените YOUR_API_KEY значением вашего ключа API:

    MAPS_API_KEY=YOUR_API_KEY
    

    Когда вы создаете свое приложение, плагин Secrets Gradle для Android скопирует ключ API и сделает его доступным в качестве переменной сборки в манифесте Android, как описано ниже .

Создайте и запустите свое приложение

Чтобы создать и запустить приложение:

  1. Подключите Android-устройство к компьютеру. Следуйте инструкциям , чтобы включить параметры разработчика на вашем устройстве Android и настроить систему на обнаружение устройства.

    Кроме того, вы можете использовать диспетчер виртуальных устройств Android (AVD) для настройки виртуального устройства. Выбирая эмулятор, убедитесь, что вы выбрали образ, включающий API Google. Дополнительные сведения см. в разделе Настройка проекта Android Studio .

  2. В Android Studio щелкните пункт меню «Выполнить» (или значок кнопки воспроизведения). Выберите устройство, как будет предложено.

Android Studio вызывает Gradle для сборки приложения, а затем запускает его на устройстве или в эмуляторе. Вы должны увидеть карту с маркером, указывающим на Сидней на восточном побережье Австралии, как на изображении на этой странице.

Поиск неисправностей:

  • Если вы не видите карту, убедитесь, что вы получили ключ API и добавили его в приложение, как описано выше . Проверьте журнал Android Monitor в Android Studio на наличие сообщений об ошибках, связанных с ключом API.
  • Используйте инструменты отладки Android Studio для просмотра журналов и отладки приложения.

Разобраться в коде

В этой части руководства объясняются наиболее важные части приложения MapWithMarker , чтобы помочь вам понять, как создать подобное приложение.

Проверьте манифест Android

Обратите внимание на следующие элементы в файле AndroidManifest.xml вашего приложения:

  • Добавьте элемент meta-data для внедрения версии сервисов Google Play, с которой было скомпилировано приложение.

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
    
  • Добавьте элемент meta-data указывающий ваш ключ API. В примере, сопровождающем это руководство, значение ключа API сопоставляется с переменной сборки, соответствующей имени ключа, определенного вами ранее, MAPS_API_KEY . Когда вы создаете свое приложение, плагин Secrets Gradle для Android сделает ключи в вашем файле local.properties доступными в качестве переменных сборки манифеста.

    <meta-data
      android:name="com.google.android.geo.API_KEY"
      android:value="${MAPS_API_KEY}" />
    

    В файле build.gradle следующая строка передает ключ API в манифест Android.

      id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
    

Ниже приведен пример полного манифеста:

<?xml version="1.0" encoding="utf-8"?>
<!--
 Copyright 2020 Google LLC

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

        <!--
             The API key for Google Maps-based APIs.
        -->
        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="${MAPS_API_KEY}" />

        <activity
            android:name=".MapsMarkerActivity"
            android:label="@string/title_activity_maps"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

Добавить карту

Отображение карты с помощью Maps SDK для Android.

  1. Добавьте элемент <fragment> в файл макета вашего действия, activity_maps.xml . Этот элемент определяет SupportMapFragment , который действует как контейнер для карты и обеспечивает доступ к объекту GoogleMap . В учебнике используется версия фрагмента карты из библиотеки поддержки Android, чтобы обеспечить обратную совместимость с более ранними версиями платформы Android.

    <!--
     Copyright 2020 Google LLC
    
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
    
          http://www.apache.org/licenses/LICENSE-2.0
    
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
    -->
    
    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
        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="match_parent"
        tools:context="com.example.mapwithmarker.MapsMarkerActivity" />
    
    
  2. В методе onCreate() вашей активности установите файл макета в качестве представления содержимого. Получите дескриптор фрагмента карты, вызвав FragmentManager.findFragmentById() . Затем используйте getMapAsync() для регистрации обратного вызова карты:

    Джава

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // Retrieve the content view that renders the map.
        setContentView(R.layout.activity_maps);
    
        // Get the SupportMapFragment and request notification when the map is ready to be used.
        SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);
    }
    

    Котлин

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        // Retrieve the content view that renders the map.
        setContentView(R.layout.activity_maps)
    
        // Get the SupportMapFragment and request notification when the map is ready to be used.
        val mapFragment = supportFragmentManager.findFragmentById(R.id.map) as? SupportMapFragment
        mapFragment?.getMapAsync(this)
    }
    
  3. Реализуйте интерфейс OnMapReadyCallback и переопределите метод onMapReady() , чтобы настроить карту, когда объект GoogleMap доступен:

    Джава

    public class MapsMarkerActivity extends AppCompatActivity
            implements OnMapReadyCallback {
    
        // ...
    
        @Override
        public void onMapReady(GoogleMap googleMap) {
            LatLng sydney = new LatLng(-33.852, 151.211);
            googleMap.addMarker(new MarkerOptions()
                .position(sydney)
                .title("Marker in Sydney"));
        }
    }
    

    Котлин

    class MapsMarkerActivity : AppCompatActivity(), OnMapReadyCallback {
    
        // ...
    
        override fun onMapReady(googleMap: GoogleMap) {
          val sydney = LatLng(-33.852, 151.211)
          googleMap.addMarker(
            MarkerOptions()
              .position(sydney)
              .title("Marker in Sydney")
          )
        }
    }
    

По умолчанию Maps SDK для Android отображает содержимое информационного окна, когда пользователь касается маркера. Нет необходимости добавлять прослушиватель кликов для маркера, если вы готовы использовать поведение по умолчанию.

Следующие шаги

Узнайте больше об объекте карты и о том, что можно делать с маркерами .