باستخدام حزمة تطوير البرامج بالاستناد إلى بيانات "خرائط Google" لأجهزة Android، يمكنك الاستماع إلى الأحداث على الخريطة.
عيّنات تعليمات برمجية
يتضمّن مستودع ApiDemos على GitHub نماذج توضّح الأحداث والمستمعين:
Java
- EventDemoActivity: أحداث تغيير الكاميرا والنقرات على الخريطة
- CameraDemoActivity: أحداث تغيير الكاميرا
- CircleDemoActivity: أحداث سحب العلامة وسحبها
- GroundOverlayDemoActivity: أحداث النقر على تراكب الأرض
- IndoorDemoActivity: أحداث الخريطة الداخلية
- MarkerDemoActivity: أحداث العلامة ونافذة المعلومات
- PolygonDemoActivity: أحداث المضلع
Kotlin
- EventDemoActivity: أحداث تغيير الكاميرا والنقرات على الخريطة
- CameraDemoActivity: أحداث تغيير الكاميرا
- CircleDemoActivity: أحداث سحب العلامة وسحبها
- GroundOverlayDemoActivity: أحداث النقر على تراكب الأرض
- IndoorDemoActivity: أحداث الخريطة الداخلية
- MarkerDemoActivity: أحداث العلامة ونافذة المعلومات
- PolygonDemoActivity: أحداث المضلع
أحداث النقر على الخريطة / النقر المطول على الخريطة
إذا كنت تريد الردّ على مستخدم ينقر على نقطة في الخريطة، يمكنك استخدام OnMapClickListener
التي يمكنك ضبطها على الخريطة من خلال طلب الرمز GoogleMap.setOnMapClickListener(OnMapClickListener)
. عندما ينقر مستخدم في مكان ما على الخريطة، سيظهر لك حدث onMapClick(LatLng)
يشير إلى الموقع الجغرافي الذي نقر عليه المستخدم على الخريطة. تجدر الإشارة إلى أنّه إذا كنت بحاجة إلى الموقع الجغرافي المقابل على الشاشة (بالبكسل)، يمكنك الحصول على Projection
من الخريطة تتيح لك التحويل بين إحداثيات خطوط الطول والعرض وإحداثيات بكسل الشاشة.
يمكنك أيضًا الاستماع إلى الأحداث التي يتم النقر عليها لمدة طويلة باستخدام OnMapLongClickListener
التي يمكنك ضبطها على الخريطة من خلال طلب الرقم GoogleMap.setOnMapLongClickListener(OnMapLongClickListener)
.
إنّ سلوك المستمع هذا مماثل لسلوك أداة معالجة النقرات، وسيتم إعلامه
بأحداث النقر الطويل من خلال معاودة الاتصال بـ onMapLongClick(LatLng)
.
إيقاف أحداث النقر في الوضع البسيط
لإيقاف أحداث النقر على خريطة في الوضع البسيط، استدعِ setClickable()
في
العرض الذي يتضمّن MapView
أو MapFragment
. وهذا الإجراء مفيد، على سبيل المثال، عند عرض خريطة أو خرائط في طريقة عرض القائمة، حيث تريد من حدث النقر استدعاء إجراء غير مرتبط بالخريطة.
يتوفّر خيار إيقاف أحداث النقر في الوضع البسيط فقط. كما أن تعطيل أحداث النقر سيؤدي أيضًا إلى جعل العلامات غير قابلة للنقر. لن يؤثر على عناصر التحكم الأخرى على الخريطة.
بالنسبة إلى MapView
:
لغة Java
MapView mapView = findViewById(R.id.mapView); mapView.setClickable(false);
Kotlin
val mapView = findViewById<MapView>(R.id.mapView) mapView.isClickable = false
بالنسبة إلى MapFragment
:
لغة Java
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map); View view = mapFragment.getView(); view.setClickable(false);
Kotlin
val mapFragment = supportFragmentManager .findFragmentById(R.id.map) as SupportMapFragment val view = mapFragment.view view?.isClickable = false
أحداث تغيير الكاميرا
يتم تصميم عرض الخريطة على شكل كاميرا تنظر للأسفل على مستوى مستوٍ. يمكنك تغيير خصائص الكاميرا للتأثير في مستوى التكبير/التصغير ومنفذ العرض ومنظور الخريطة. اطّلِع على دليل استخدام الكاميرا. يمكن أن يؤثر المستخدمون أيضًا في الكاميرا من خلال عمل إيماءات.
يمكنك تتبُّع حركات الكاميرا باستخدام أدوات رصد تغيير الكاميرا. يمكن لتطبيقك تلقّي إشعارات بشأن بدء حركة الكاميرا والأحداث الجارية والانتهاء. يمكنك أيضًا الاطّلاع على سبب تحرك الكاميرا، سواء كان ذلك بسبب إيماءات المستخدم أو الصور المتحركة المدمجة في واجهة برمجة التطبيقات أو الحركات التي يتحكم فيها المطوّر.
يوضِّح النموذج التالي جميع أدوات معالجة أحداث الكاميرا المتاحة:
لغة 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.mapdemo; import android.graphics.Color; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.CompoundButton; import android.widget.SeekBar; import android.widget.Toast; import androidx.appcompat.app.AppCompatActivity; import com.google.android.gms.maps.CameraUpdate; import com.google.android.gms.maps.CameraUpdateFactory; import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.GoogleMap.CancelableCallback; import com.google.android.gms.maps.GoogleMap.OnCameraIdleListener; import com.google.android.gms.maps.GoogleMap.OnCameraMoveCanceledListener; import com.google.android.gms.maps.GoogleMap.OnCameraMoveListener; import com.google.android.gms.maps.GoogleMap.OnCameraMoveStartedListener; import com.google.android.gms.maps.OnMapReadyCallback; import com.google.android.gms.maps.SupportMapFragment; import com.google.android.gms.maps.model.CameraPosition; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.PolylineOptions; /** * This shows how to change the camera position for the map. */ public class CameraDemoActivity extends AppCompatActivity implements OnCameraMoveStartedListener, OnCameraMoveListener, OnCameraMoveCanceledListener, OnCameraIdleListener, OnMapReadyCallback { private static final String TAG = CameraDemoActivity.class.getName(); /** * The amount by which to scroll the camera. Note that this amount is in raw pixels, not dp * (density-independent pixels). */ private static final int SCROLL_BY_PX = 100; public static final CameraPosition BONDI = new CameraPosition.Builder().target(new LatLng(-33.891614, 151.276417)) .zoom(15.5f) .bearing(300) .tilt(50) .build(); public static final CameraPosition SYDNEY = new CameraPosition.Builder().target(new LatLng(-33.87365, 151.20689)) .zoom(15.5f) .bearing(0) .tilt(25) .build(); private GoogleMap map; private CompoundButton animateToggle; private CompoundButton customDurationToggle; private SeekBar customDurationBar; private PolylineOptions currPolylineOptions; private boolean isCanceled = false; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.camera_demo); animateToggle = findViewById(R.id.animate); customDurationToggle = findViewById(R.id.duration_toggle); customDurationBar = findViewById(R.id.duration_bar); updateEnabledState(); SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map); mapFragment.getMapAsync(this); } @Override protected void onResume() { super.onResume(); updateEnabledState(); } @Override public void onMapReady(GoogleMap googleMap) { map = googleMap; map.setOnCameraIdleListener(this); map.setOnCameraMoveStartedListener(this); map.setOnCameraMoveListener(this); map.setOnCameraMoveCanceledListener(this); // We will provide our own zoom controls. map.getUiSettings().setZoomControlsEnabled(false); map.getUiSettings().setMyLocationButtonEnabled(true); // Show Sydney map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(-33.87365, 151.20689), 10)); } /** * When the map is not ready the CameraUpdateFactory cannot be used. This should be called on * all entry points that call methods on the Google Maps API. */ private boolean checkReady() { if (map == null) { Toast.makeText(this, R.string.map_not_ready, Toast.LENGTH_SHORT).show(); return false; } return true; } /** * Called when the Go To Bondi button is clicked. */ public void onGoToBondi(View view) { if (!checkReady()) { return; } changeCamera(CameraUpdateFactory.newCameraPosition(BONDI)); } /** * Called when the Animate To Sydney button is clicked. */ public void onGoToSydney(View view) { if (!checkReady()) { return; } changeCamera(CameraUpdateFactory.newCameraPosition(SYDNEY), new CancelableCallback() { @Override public void onFinish() { Toast.makeText(getBaseContext(), "Animation to Sydney complete", Toast.LENGTH_SHORT) .show(); } @Override public void onCancel() { Toast.makeText(getBaseContext(), "Animation to Sydney canceled", Toast.LENGTH_SHORT) .show(); } }); } /** * Called when the stop button is clicked. */ public void onStopAnimation(View view) { if (!checkReady()) { return; } map.stopAnimation(); } /** * Called when the zoom in button (the one with the +) is clicked. */ public void onZoomIn(View view) { if (!checkReady()) { return; } changeCamera(CameraUpdateFactory.zoomIn()); } /** * Called when the zoom out button (the one with the -) is clicked. */ public void onZoomOut(View view) { if (!checkReady()) { return; } changeCamera(CameraUpdateFactory.zoomOut()); } /** * Called when the tilt more button (the one with the /) is clicked. */ public void onTiltMore(View view) { if (!checkReady()) { return; } CameraPosition currentCameraPosition = map.getCameraPosition(); float currentTilt = currentCameraPosition.tilt; float newTilt = currentTilt + 10; newTilt = (newTilt > 90) ? 90 : newTilt; CameraPosition cameraPosition = new CameraPosition.Builder(currentCameraPosition) .tilt(newTilt).build(); changeCamera(CameraUpdateFactory.newCameraPosition(cameraPosition)); } /** * Called when the tilt less button (the one with the \) is clicked. */ public void onTiltLess(View view) { if (!checkReady()) { return; } CameraPosition currentCameraPosition = map.getCameraPosition(); float currentTilt = currentCameraPosition.tilt; float newTilt = currentTilt - 10; newTilt = (newTilt > 0) ? newTilt : 0; CameraPosition cameraPosition = new CameraPosition.Builder(currentCameraPosition) .tilt(newTilt).build(); changeCamera(CameraUpdateFactory.newCameraPosition(cameraPosition)); } /** * Called when the left arrow button is clicked. This causes the camera to move to the left */ public void onScrollLeft(View view) { if (!checkReady()) { return; } changeCamera(CameraUpdateFactory.scrollBy(-SCROLL_BY_PX, 0)); } /** * Called when the right arrow button is clicked. This causes the camera to move to the right. */ public void onScrollRight(View view) { if (!checkReady()) { return; } changeCamera(CameraUpdateFactory.scrollBy(SCROLL_BY_PX, 0)); } /** * Called when the up arrow button is clicked. The causes the camera to move up. */ public void onScrollUp(View view) { if (!checkReady()) { return; } changeCamera(CameraUpdateFactory.scrollBy(0, -SCROLL_BY_PX)); } /** * Called when the down arrow button is clicked. This causes the camera to move down. */ public void onScrollDown(View view) { if (!checkReady()) { return; } changeCamera(CameraUpdateFactory.scrollBy(0, SCROLL_BY_PX)); } /** * Called when the animate button is toggled */ public void onToggleAnimate(View view) { updateEnabledState(); } /** * Called when the custom duration checkbox is toggled */ public void onToggleCustomDuration(View view) { updateEnabledState(); } /** * Update the enabled state of the custom duration controls. */ private void updateEnabledState() { customDurationToggle.setEnabled(animateToggle.isChecked()); customDurationBar .setEnabled(animateToggle.isChecked() && customDurationToggle.isChecked()); } private void changeCamera(CameraUpdate update) { changeCamera(update, null); } /** * Change the camera position by moving or animating the camera depending on the state of the * animate toggle button. */ private void changeCamera(CameraUpdate update, CancelableCallback callback) { if (animateToggle.isChecked()) { if (customDurationToggle.isChecked()) { int duration = customDurationBar.getProgress(); // The duration must be strictly positive so we make it at least 1. map.animateCamera(update, Math.max(duration, 1), callback); } else { map.animateCamera(update, callback); } } else { map.moveCamera(update); } } @Override public void onCameraMoveStarted(int reason) { if (!isCanceled) { map.clear(); } String reasonText = "UNKNOWN_REASON"; currPolylineOptions = new PolylineOptions().width(5); switch (reason) { case OnCameraMoveStartedListener.REASON_GESTURE: currPolylineOptions.color(Color.BLUE); reasonText = "GESTURE"; break; case OnCameraMoveStartedListener.REASON_API_ANIMATION: currPolylineOptions.color(Color.RED); reasonText = "API_ANIMATION"; break; case OnCameraMoveStartedListener.REASON_DEVELOPER_ANIMATION: currPolylineOptions.color(Color.GREEN); reasonText = "DEVELOPER_ANIMATION"; break; } Log.d(TAG, "onCameraMoveStarted(" + reasonText + ")"); addCameraTargetToPath(); } @Override public void onCameraMove() { // When the camera is moving, add its target to the current path we'll draw on the map. if (currPolylineOptions != null) { addCameraTargetToPath(); } Log.d(TAG, "onCameraMove"); } @Override public void onCameraMoveCanceled() { // When the camera stops moving, add its target to the current path, and draw it on the map. if (currPolylineOptions != null) { addCameraTargetToPath(); map.addPolyline(currPolylineOptions); } isCanceled = true; // Set to clear the map when dragging starts again. currPolylineOptions = null; Log.d(TAG, "onCameraMoveCancelled"); } @Override public void onCameraIdle() { if (currPolylineOptions != null) { addCameraTargetToPath(); map.addPolyline(currPolylineOptions); } currPolylineOptions = null; isCanceled = false; // Set to *not* clear the map when dragging starts again. Log.d(TAG, "onCameraIdle"); } private void addCameraTargetToPath() { LatLng target = map.getCameraPosition().target; currPolylineOptions.add(target); } }
Kotlin
/* * Copyright 2018 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 * * https://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.kotlindemos import android.graphics.Color import android.os.Bundle import android.util.Log import android.view.View import android.widget.CompoundButton import android.widget.SeekBar import android.widget.Toast import androidx.appcompat.app.AppCompatActivity import com.google.android.gms.maps.CameraUpdate import com.google.android.gms.maps.CameraUpdateFactory import com.google.android.gms.maps.GoogleMap import com.google.android.gms.maps.GoogleMap.CancelableCallback import com.google.android.gms.maps.GoogleMap.OnCameraIdleListener import com.google.android.gms.maps.GoogleMap.OnCameraMoveCanceledListener import com.google.android.gms.maps.GoogleMap.OnCameraMoveListener import com.google.android.gms.maps.GoogleMap.OnCameraMoveStartedListener import com.google.android.gms.maps.OnMapReadyCallback import com.google.android.gms.maps.SupportMapFragment import com.google.android.gms.maps.model.CameraPosition import com.google.android.gms.maps.model.LatLng import com.google.android.gms.maps.model.PolylineOptions /** * This shows how to change the camera position for the map. */ class CameraDemoActivity : AppCompatActivity(), OnCameraMoveStartedListener, OnCameraMoveListener, OnCameraMoveCanceledListener, OnCameraIdleListener, OnMapReadyCallback { /** * The amount by which to scroll the camera. Note that this amount is in raw pixels, not dp * (density-independent pixels). */ private val SCROLL_BY_PX = 100 private val TAG = CameraDemoActivity::class.java.name private val sydneyLatLng = LatLng(-33.87365, 151.20689) private val bondiLocation: CameraPosition = CameraPosition.Builder() .target(LatLng(-33.891614, 151.276417)) .zoom(15.5f) .bearing(300f) .tilt(50f) .build() private val sydneyLocation: CameraPosition = CameraPosition.Builder(). target(LatLng(-33.87365, 151.20689)) .zoom(15.5f) .bearing(0f) .tilt(25f) .build() private lateinit var map: GoogleMap private lateinit var animateToggle: CompoundButton private lateinit var customDurationToggle: CompoundButton private lateinit var customDurationBar: SeekBar private var currPolylineOptions: PolylineOptions? = null private var isCanceled = false override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.camera_demo) animateToggle = findViewById(R.id.animate) customDurationToggle = findViewById(R.id.duration_toggle) customDurationBar = findViewById(R.id.duration_bar) updateEnabledState() val mapFragment = supportFragmentManager.findFragmentById(R.id.map) as SupportMapFragment mapFragment.getMapAsync(this) } override fun onResume() { super.onResume() updateEnabledState() } override fun onMapReady(googleMap: GoogleMap) { map = googleMap // return early if the map was not initialised properly with(googleMap) { setOnCameraIdleListener(this@CameraDemoActivity) setOnCameraMoveStartedListener(this@CameraDemoActivity) setOnCameraMoveListener(this@CameraDemoActivity) setOnCameraMoveCanceledListener(this@CameraDemoActivity) // We will provide our own zoom controls. uiSettings.isZoomControlsEnabled = false uiSettings.isMyLocationButtonEnabled = true // Show Sydney moveCamera(CameraUpdateFactory.newLatLngZoom(sydneyLatLng, 10f)) } } /** * When the map is not ready the CameraUpdateFactory cannot be used. This should be used to wrap * all entry points that call methods on the Google Maps API. * * @param stuffToDo the code to be executed if the map is initialised */ private fun checkReadyThen(stuffToDo: () -> Unit) { if (!::map.isInitialized) { Toast.makeText(this, R.string.map_not_ready, Toast.LENGTH_SHORT).show() } else { stuffToDo() } } /** * Called when the Go To Bondi button is clicked. */ @Suppress("UNUSED_PARAMETER") fun onGoToBondi(view: View) { checkReadyThen { changeCamera(CameraUpdateFactory.newCameraPosition(bondiLocation)) } } /** * Called when the Animate To Sydney button is clicked. */ @Suppress("UNUSED_PARAMETER") fun onGoToSydney(view: View) { checkReadyThen { changeCamera(CameraUpdateFactory.newCameraPosition(sydneyLocation), object : CancelableCallback { override fun onFinish() { Toast.makeText(baseContext, "Animation to Sydney complete", Toast.LENGTH_SHORT).show() } override fun onCancel() { Toast.makeText(baseContext, "Animation to Sydney canceled", Toast.LENGTH_SHORT).show() } }) } } /** * Called when the stop button is clicked. */ @Suppress("UNUSED_PARAMETER") fun onStopAnimation(view: View) = checkReadyThen { map.stopAnimation() } /** * Called when the zoom in button (the one with the +) is clicked. */ @Suppress("UNUSED_PARAMETER") fun onZoomIn(view: View) = checkReadyThen { changeCamera(CameraUpdateFactory.zoomIn()) } /** * Called when the zoom out button (the one with the -) is clicked. */ @Suppress("UNUSED_PARAMETER") fun onZoomOut(view: View) = checkReadyThen { changeCamera(CameraUpdateFactory.zoomOut()) } /** * Called when the tilt more button (the one with the /) is clicked. */ @Suppress("UNUSED_PARAMETER") fun onTiltMore(view: View) { checkReadyThen { val newTilt = Math.min(map.cameraPosition.tilt + 10, 90F) val cameraPosition = CameraPosition.Builder(map.cameraPosition).tilt(newTilt).build() changeCamera(CameraUpdateFactory.newCameraPosition(cameraPosition)) } } /** * Called when the tilt less button (the one with the \) is clicked. */ @Suppress("UNUSED_PARAMETER") fun onTiltLess(view: View) { checkReadyThen { val newTilt = Math.max(map.cameraPosition.tilt - 10, 0F) val cameraPosition = CameraPosition.Builder(map.cameraPosition).tilt(newTilt).build() changeCamera(CameraUpdateFactory.newCameraPosition(cameraPosition)) } } /** * Called when the left arrow button is clicked. This causes the camera to move to the left */ @Suppress("UNUSED_PARAMETER") fun onScrollLeft(view: View) { checkReadyThen { changeCamera(CameraUpdateFactory.scrollBy((-SCROLL_BY_PX).toFloat(),0f)) } } /** * Called when the right arrow button is clicked. This causes the camera to move to the right. */ @Suppress("UNUSED_PARAMETER") fun onScrollRight(view: View) { checkReadyThen { changeCamera(CameraUpdateFactory.scrollBy(SCROLL_BY_PX.toFloat(), 0f)) } } /** * Called when the up arrow button is clicked. The causes the camera to move up. */ @Suppress("UNUSED_PARAMETER") fun onScrollUp(view: View) { checkReadyThen { changeCamera(CameraUpdateFactory.scrollBy(0f, (-SCROLL_BY_PX).toFloat())) } } /** * Called when the down arrow button is clicked. This causes the camera to move down. */ @Suppress("UNUSED_PARAMETER") fun onScrollDown(view: View) { checkReadyThen { changeCamera(CameraUpdateFactory.scrollBy(0f, SCROLL_BY_PX.toFloat())) } } /** * Called when the animate button is toggled */ @Suppress("UNUSED_PARAMETER") fun onToggleAnimate(view: View) = updateEnabledState() /** * Called when the custom duration checkbox is toggled */ @Suppress("UNUSED_PARAMETER") fun onToggleCustomDuration(view: View) = updateEnabledState() /** * Update the enabled state of the custom duration controls. */ private fun updateEnabledState() { customDurationToggle.isEnabled = animateToggle.isChecked customDurationBar.isEnabled = animateToggle.isChecked && customDurationToggle.isChecked } /** * Change the camera position by moving or animating the camera depending on the state of the * animate toggle button. */ private fun changeCamera(update: CameraUpdate, callback: CancelableCallback? = null) { if (animateToggle.isChecked) { if (customDurationToggle.isChecked) { // The duration must be strictly positive so we make it at least 1. map.animateCamera(update, Math.max(customDurationBar.progress, 1), callback) } else { map.animateCamera(update, callback) } } else { map.moveCamera(update) } } override fun onCameraMoveStarted(reason: Int) { if (!isCanceled) map.clear() var reasonText = "UNKNOWN_REASON" currPolylineOptions = PolylineOptions().width(5f) when (reason) { OnCameraMoveStartedListener.REASON_GESTURE -> { currPolylineOptions?.color(Color.BLUE) reasonText = "GESTURE" } OnCameraMoveStartedListener.REASON_API_ANIMATION -> { currPolylineOptions?.color(Color.RED) reasonText = "API_ANIMATION" } OnCameraMoveStartedListener.REASON_DEVELOPER_ANIMATION -> { currPolylineOptions?.color(Color.GREEN) reasonText = "DEVELOPER_ANIMATION" } } Log.d(TAG, "onCameraMoveStarted($reasonText)") addCameraTargetToPath() } /** * Ensures that currPolyLine options is not null before accessing it * * @param stuffToDo the code to be executed if currPolylineOptions is not null */ private fun checkPolylineThen(stuffToDo: () -> Unit) { if (currPolylineOptions != null) stuffToDo() } override fun onCameraMove() { Log.d(TAG, "onCameraMove") // When the camera is moving, add its target to the current path we'll draw on the map. checkPolylineThen { addCameraTargetToPath() } } override fun onCameraMoveCanceled() { // When the camera stops moving, add its target to the current path, and draw it on the map. checkPolylineThen { addCameraTargetToPath() map.addPolyline(currPolylineOptions!!) } isCanceled = true // Set to clear the map when dragging starts again. currPolylineOptions = null Log.d(TAG, "onCameraMoveCancelled") } override fun onCameraIdle() { checkPolylineThen { addCameraTargetToPath() map.addPolyline(currPolylineOptions!!) } currPolylineOptions = null isCanceled = false // Set to *not* clear the map when dragging starts again. Log.d(TAG, "onCameraIdle") } private fun addCameraTargetToPath() { currPolylineOptions?.add(map.cameraPosition.target) } }
تتوفّر أدوات معالجة الصوت التالية للكاميرا:
يتم استدعاء الإجراء
onCameraMoveStarted()
لمعاودة الاتصال بالرمزOnCameraMoveStartedListener
عندما تبدأ الكاميرا في التحرك. تتلقّى طريقة معاودة الاتصال علامةreason
لحركة الكاميرا. يمكن أن يكون السبب أحد الأسباب التالية:- تشير السمة
REASON_GESTURE
إلى أنّ الكاميرا تحركت استجابةً لإيماءة المستخدم على الخريطة، مثل العرض الشامل، أو الإمالة، أو التصغير أو التكبير بإصبعين، أو تدوير الخريطة. - تشير السمة
REASON_API_ANIMATION
إلى أنّ واجهة برمجة التطبيقات قد نقلت الكاميرا استجابةً لإجراء مستخدم لا يستند إلى إيماءة، مثل النقر على زر التكبير/التصغير أو النقر على الزر "موقعي" أو النقر على علامة. - وتشير القيمة
REASON_DEVELOPER_ANIMATION
إلى أنّ تطبيقك بدأ حركة الكاميرا.
- تشير السمة
يتم استدعاء الإجراء
onCameraMove()
لاستدعاءOnCameraMoveListener
عدة مرات أثناء تحرّك الكاميرا أو أثناء تفاعل المستخدم مع الشاشة التي تعمل باللمس. وتجدر الإشارة إلى أنّ واجهة برمجة التطبيقات تستدعي الردّ مرة واحدة لكل إطار كدليل لعدد مرات استدعاء معاودة الاتصال. ومع ذلك، تجدر الإشارة إلى أنّه يتم استدعاء معاودة الاتصال هذه بشكل غير متزامن وبالتالي لا تتم مزامنتها مع ما يظهر على الشاشة. يُرجى العِلم أيضًا أنّه من الممكن أن يظل موضع الكاميرا بدون تغيير بين معاودة اتصالonCameraMove()
والتالي.يتم استدعاء الإجراء
OnCameraIdle()
لاستدعاءOnCameraIdleListener
عندما تتوقف الكاميرا عن الحركة ويتوقف المستخدم عن التفاعل مع الخريطة.يتم استدعاء الإجراء
OnCameraMoveCanceled()
لاستدعاءOnCameraMoveCanceledListener
عند انقطاع حركة الكاميرا الحالية. مباشرةً بعدOnCameraMoveCanceled()
معاودة الاتصال، يتم استدعاءonCameraMoveStarted()
لمعاودة الاتصال باستخدامreason
الجديدة.في حال استدعى تطبيقك الرمز
GoogleMap.stopAnimation()
صراحةً، يتم استدعاء معاودة الاتصال بالرمزOnCameraMoveCanceled()
، ولكن لن يتم استدعاء معاودة الاتصال بالرمزonCameraMoveStarted()
.
لتحديد مستمع على الخريطة، يمكنك طلب تحديد طريقة الاستماع المناسبة.
على سبيل المثال، لطلب معاودة الاتصال من OnCameraMoveStartedListener
، يمكنك الاتصال بـ GoogleMap.setOnCameraMoveStartedListener()
.
يمكنك معرفة هدف الكاميرا (خط العرض/خط الطول) والتكبير/التصغير والاتجاه والإمالة
من CameraPosition
. راجِع دليل
موضع الكاميرا للحصول على تفاصيل حول هذه الخصائص.
أحداث حول الأنشطة التجارية ونقاط الاهتمام الأخرى
تظهر النقاط المهمة بشكل افتراضي على الخريطة الأساسية مع الرموز الخاصة بها. تشمل نقاط الاهتمام المنتزهات والمدارس والمباني الحكومية والمزيد، بالإضافة إلى نقاط الاهتمام التجارية مثل المتاجر والمطاعم والفنادق.
يمكنك الرد على أحداث النقر على نقطة اهتمام. يمكنك الاطلاع على دليل الأنشطة التجارية والنقاط المهمة الأخرى.
أحداث الخريطة الداخلية
يمكنك استخدام الأحداث للعثور على المستوى النشط للخريطة الداخلية وتخصيصه. استخدِم واجهة
OnIndoorStateChangeListener
لضبط المستمع الذي يتم الاتصال به عند
التركيز على مبنى جديد أو تفعيل مستوى جديد في مبنى.
يمكنك الحصول على المبنى محل التركيز حاليًا من خلال الاتصال على
GoogleMap.getFocusedBuilding()
.
إن توسيط الخريطة على خط عرض/خط طول معين
سيمنحك بشكل عام المبنى في خط العرض/الطول هذا، لكن ذلك ليس مضمونًا.
يمكنك بعد ذلك الاطّلاع على المستوى النشط حاليًا من خلال طلب الرقم
IndoorBuilding.getActiveLevelIndex()
.
لغة Java
IndoorBuilding building = map.getFocusedBuilding(); if (building != null) { int activeLevelIndex = building.getActiveLevelIndex(); IndoorLevel activeLevel = building.getLevels().get(activeLevelIndex); }
Kotlin
map.focusedBuilding?.let { building: IndoorBuilding -> val activeLevelIndex = building.activeLevelIndex val activeLevel = building.levels[activeLevelIndex] }
ويكون هذا الأمر مفيدًا إذا كنت تريد عرض ترميز مخصص للمستوى النشط، مثل العلامات، وتراكبات الأرض، وتراكبات المربّعات، والمضلعات، والخطوط المتعددة، وأشكال أخرى.
تلميح: للرجوع إلى مستوى الشارع، احصل على المستوى التلقائي عبر
IndoorBuilding.getDefaultLevelIndex()
، واضبطه كالمستوى النشط عبر
IndoorLevel.activate()
.
أحداث العلامة ونافذة المعلومات
يمكنك الاستماع إلى أحداث العلامة والاستجابة لها، بما في ذلك الأحداث الناتجة عن النقر على العلامة وسحبها،
من خلال ضبط أداة معالجة البيانات المقابلة على كائن GoogleMap
الذي تنتمي إليه العلامة. اطّلِع على دليل أحداث العلامات.
ويمكنك أيضًا الاستماع إلى الأحداث في نوافذ المعلومات.
أحداث الأشكال والتراكبات
يمكنك الاستماع إلى أحداث النقر والاستجابة لها على الخطوط المتعددة والمضلّعات والدوائر وتراكبات الأرض.
أحداث الموقع الجغرافي
يمكن لتطبيقك الاستجابة للأحداث التالية ذات الصلة بطبقة "موقعي":
- إذا نقر المستخدم على زر "موقعي"، سيتلقى تطبيقك
onMyLocationButtonClick()
معاودة الاتصال منGoogleMap.OnMyLocationButtonClickListener
. - إذا نقر المستخدم على النقطة الزرقاء لموقعي الجغرافي، سيتلقَّى تطبيقك معاودة اتصال
onMyLocationClick()
منGoogleMap.OnMyLocationClickListener
.
للحصول على تفاصيل، راجع دليل طبقة "موقعي".