يوضح لك هذا البرنامج التعليمي كيفية إضافة خريطة Google إلى تطبيق Android الخاص بك. تتضمن الخريطة علامة، تسمى أيضًا دبوس، للإشارة إلى موقع معين.
اتبع البرنامج التعليمي لإنشاء تطبيق Android باستخدام حزمة SDK للخرائط لنظام التشغيل Android. بيئة التطوير التي يُنصح بها هي استوديو Android.
الحصول على الرمز
استنسخ أو نزِّل مستودع نماذج واجهة برمجة التطبيقات لخرائط Google على Android الإصدار 2 من GitHub.
عرض إصدار جافا من النشاط:
// 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".
- نزِّل تطبيق Android Studio وثبِّته.
- أضِف حزمة خدمات Google Play إلى "استوديو Android".
- استنساخ أو تنزيل مستودع نماذج واجهة برمجة تطبيقات Android لخرائط Google إذا لم تفعل ذلك عند بدء قراءة هذا البرنامج التعليمي.
استيراد مشروع البرنامج التعليمي:
- في "استوديو Android"، اختَر ملف > جديد > استيراد مشروع.
- انتقل إلى الموقع الذي حفظت فيه نماذج نماذج Android API لخرائط Google بعد تنزيله.
- ابحث عن مشروع MapWithMarker في هذا الموقع:
PATH-TO-SAVED-REPO/android-samples/tutorials/java/MapWithMarker
(Java) أو
PATH-TO-SAVED-REPO/android-samples/tutorials/kotlin/MapWithMarker
(Kotlin) - اختَر دليل المشروع، ثم انقر على فتح. بإمكان "استوديو Android" الآن إنشاء مشروعك باستخدام أداة إنشاء Gradle.
تفعيل واجهات برمجة التطبيقات اللازمة والحصول على مفتاح واجهة برمجة التطبيقات
لإكمال هذا البرنامج التعليمي، تحتاج إلى مشروع في Google Cloud مع تفعيل واجهات برمجة التطبيقات اللازمة ومفتاح واجهة برمجة التطبيقات المصرَّح له باستخدام حزمة تطوير البرامج بالاستناد إلى بيانات "خرائط Google" لنظام التشغيل Android. لمزيد من التفاصيل، يُرجى الاطّلاع على:
إضافة مفتاح واجهة برمجة التطبيقات إلى تطبيقك
- افتح ملف
local.properties
لمشروعك. أضِف السلسلة التالية ثم استبدِل
YOUR_API_KEY
بقيمة مفتاح واجهة برمجة التطبيقات:MAPS_API_KEY=YOUR_API_KEY
عند إنشاء تطبيقك، سينسخ المكوّن الإضافي Secrets Gradle الإضافي لنظام التشغيل Android مفتاح واجهة برمجة التطبيقات ويجعله متاحًا كمتغيّر إصدار في بيان Android، كما هو موضّح أدناه.
إنشاء تطبيقك وتشغيله
لإنشاء التطبيق وتشغيله:
وصِّل جهاز Android بجهاز الكمبيوتر. اتّبِع instructions لتفعيل خيارات المطوّرين على جهاز Android وضبط نظامك لرصد الجهاز.
بدلاً من ذلك، يمكنك استخدام مدير جهاز Android الافتراضي (AVD) لضبط جهاز افتراضي. عند اختيار المحاكي، تأكد من اختيار صورة تتضمن Google APIs. لمعرفة مزيد من التفاصيل، يمكنك الاطّلاع على مقالة إعداد مشروع "استوديو Android" .
في "استوديو Android"، انقر على خيار القائمة تشغيل (أو على رمز زر التشغيل). اختَر جهازًا كما هو مطلوب.
يستدعي Android Studio Gradle لإنشاء التطبيق، ثم يشغّل التطبيق على الجهاز أو المحاكي. من المفترض أن ترى خريطة بها علامة تشير إلى سيدني على الساحل الشرقي لأستراليا، على غرار الصورة في هذه الصفحة.
تحرّي الخلل وإصلاحه:
- إذا لم تظهر لك خريطة، تأكّد من أنّك حصلت على مفتاح واجهة برمجة التطبيقات وأضفته إلى التطبيق، كما هو موضّح أعلاه. اطّلِع على سجلّ الدخول إلى Android Monitor في Android Studio بحثًا عن رسائل الخطأ المتعلّقة بمفتاح واجهة برمجة التطبيقات.
- ويمكنك استخدام أدوات تصحيح الأخطاء في "استوديو Android" لعرض السجلات وتصحيح أخطاء التطبيق.
فهم الرمز
يشرح هذا الجزء من البرنامج التعليمي أهم أجزاء تطبيق 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
يحدّد مفتاح واجهة برمجة التطبيقات. يربط النموذج المصاحب لهذا البرنامج التعليمي قيمة مفتاح واجهة برمجة التطبيقات بمتغيّر إصدار مطابق لاسم المفتاح الذي حدّدته سابقًا،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
، يمرّر السطر التالي مفتاح واجهة برمجة التطبيقات إلى ملف بيان Androidid '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>
إضافة خريطة
عرض خريطة باستخدام حزمة تطوير البرامج بالاستناد إلى بيانات "خرائط Google" لنظام التشغيل Android.
أضِف عنصر
<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" />
في طريقة
onCreate()
لنشاطك، عليك ضبط ملف التنسيق على أنّه طريقة عرض المحتوى. يمكنك التعامل مع جزء الخريطة من خلال استدعاءFragmentManager.findFragmentById()
. بعد ذلك، استخدِمgetMapAsync()
للتسجيل في معاودة الاتصال على الخريطة:Java
@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); }
Kotlin
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) }
يمكنك تنفيذ واجهة
OnMapReadyCallback
وتجاوز طريقةonMapReady()
لإعداد الخريطة عند توفُّر كائنGoogleMap
:Java
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")); } }
Kotlin
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") ) } }
تعرض حزمة تطوير البرامج بالاستناد إلى بيانات "خرائط Google" لنظام التشغيل Android محتوى نافذة المعلومات تلقائيًا عندما ينقر المستخدم على محدّد موقع. ما مِن حاجة إلى إضافة أداة معالجة النقرة إلى العلامة إذا أردت استخدام السلوك التلقائي.
الخطوات التالية
اطّلع على مزيد من المعلومات حول كائن الخريطة وما يمكنك فعله باستخدام العلامات.