草庐IT

android - 在 getMapAsync() 中调用 GoogleMap.getProjection() 时 IllegalArgumentException left == right

coder 2023-12-24 原文

更新到最新的支持库(版本 24.2.0)并将 compileSdkVersion 设置为 24 后,我开始在旋转后调用 GoogleMap.getProjection() 时看到 IllegalArgumentException left == right。

map 的初始渲染有效,当旋转回原始方向时,不会抛出异常。它只是从原来的方向到另一个方向(每次旋转从原来的方向改变到新的方向时都会发生异常)

使用相同代码返回支持库的 23.4.0 版不会出现此行为。所以,我不确定最新的支持库是否存在问题(这应该与 GoogleMap 无关),或者最新版本只是在我的代码中暴露了一个错误。

两个版本都使用相同的 Google Play 服务 (9.4.0)。

我读过关于应该在 onMapLoadedCallback 内部访问投影的建议,但我的假设是在 getMapAsync 方法内调用 GoogleMap 实例上的方法会很好,因为这应该可以保证 map 可以使用。

堆栈跟踪:

java.lang.IllegalArgumentException: left == right
        at android.opengl.Matrix.frustumM(Matrix.java:327)
        at com.google.maps.api.android.lib6.gmm6.n.b.b.j(Unknown Source)
        at com.google.maps.api.android.lib6.gmm6.n.b.b.l(Unknown Source)
        at com.google.maps.api.android.lib6.gmm6.n.b.b.b(Unknown Source)
        at com.google.maps.api.android.lib6.gmm6.n.b.b.a(Unknown Source)
        at com.google.maps.api.android.lib6.gmm6.n.b.b.a(Unknown Source)
        at com.google.maps.api.android.lib6.gmm6.c.v.a(Unknown Source)
        at com.google.maps.api.android.lib6.d.aw.a(Unknown Source)
        at com.google.android.gms.maps.internal.cb.onTransact(SourceFile:82)
        at android.os.Binder.transact(Binder.java:387)
        at com.google.android.gms.maps.internal.IProjectionDelegate$zza$zza.getVisibleRegion(Unknown Source)
        at com.google.android.gms.maps.Projection.getVisibleRegion(Unknown Source)
        at com.google.maps.android.clustering.view.DefaultClusterRenderer$RenderTask.run(DefaultClusterRenderer.java:363)
        at java.lang.Thread.run(Thread.java:818)

相关 fragment 如下:

 public class MyMapFragment extends Fragment
 {
    @Nullable
    private SupportMapFragment m_mapFragment;

    // fragment setup code removed for this snippet

    /** Assign the map fragment variable on resume. This is necessary for orientation change events */
    @Override
    public void onResume ()
    {
       super.onResume();

       // We can get here in (at least) 3 different ways:
       // 1. The first time this fragment is created.
       //       In this case, we will not have a local reference to a map fragment and will will add
       //       it if we are the currently displaying fragment.
       // 2. After rotation
       //       Because the actual map fragment is maintained by our activity, the map fragment will
       //       have been recreated and our reference to it will no longer be valid.
       // 3. After a pause event (such as the device going into power saving mode).
       //       We should still have a reference to the current map fragment and it should be
       //       valid. We can test that by checking if the map fragment is attached. This is done
       //       in the setMapFragment() method.
       //
       final AlbumActivity activity = (AlbumActivity)getActivity();

       Fragment currentFragment = activity.getCurrentItemFragment() ;

       if( m_mapFragment == null && this == currentFragment )
       {
          setMapFragment( activity.getMapFragment() );
       }
       else if ( m_mapFragment != null )
       {
          setMapFragment( activity.getMapFragment() );
       }
       else
       {
          // just update the map 
          updateMap() ;
       }
    }

    private void updateMap()
    {
       if ( m_mapFragment == null )
       {
           return;
       }

       m_mapFragment.getMapAsync( new OnMapReadyCallback()
       {
           @Override
           public void onMapReady( GoogleMap googleMap )
           {
               try
               {
                  googleMap.clear();

                  // Exception thrown here!
                  final Projection projection = googleMap.getProjection() ;
                  final VisibleRegion visibleRegion = projection.getVisibleRegion() ;

                  LatLngBounds mapBounds = visibleRegion.latLngBounds;

                  // more done on map here (markers, etc.)
                }
                catch ( IllegalStateException e )
                {
                  // basically, wait 100 ms and try again. However,
                  // the exception seems to not go away until rotation goes back to original orientation
                  configureAfterDelay();
                }
           }
       } ) ;
    }

    public void setMapFragment ( @Nullable SupportMapFragment mapFragment )
   {
      // The working assumption is that our map fragment, if already added, is added to
      // our current fragment.
      if ( mapFragment != null && mapFragment.isAdded() == false )
      {
         final FragmentManager fragmentManager = getChildFragmentManager();

         // Add the map view to the current view
         fragmentManager.beginTransaction()
            .add( R.id.mapview_container, mapFragment, MAP_FRAGMENT_TAG )
        .commit();

         fragmentManager.executePendingTransactions();
      }

      m_mapFragment = mapFragment;

      updateMap( );
   }

我在其他地方看到了以下问题,但没有找到解决方案:

https://code.google.com/p/gmaps-api-issues/issues/detail?id=8724

最佳答案

我知道已经很晚了,但我今天刚遇到这个问题...问题是本地图的大小为 0 并且您尝试访问 map.Projection.VisibleRegion 时。错误消息的字面意思是投影的左侧与投影的右侧相同,如果 map View 的宽度为 0,就会发生这种情况。要绕过它,请确保您只访问 map 投影的 VisibleRegion当 mapView 的宽度 > 0 时。

var extent = mapView.Width > 0 ? map.Projection.VisibleRegion.LatLngBounds : null;

关于android - 在 getMapAsync() 中调用 GoogleMap.getProjection() 时 IllegalArgumentException left == right,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39212036/

有关android - 在 getMapAsync() 中调用 GoogleMap.getProjection() 时 IllegalArgumentException left == right的更多相关文章

  1. 使用 ACL 调用 upload_file 时出现 Ruby S3 "Access Denied"错误 - 2

    我正在尝试编写一个将文件上传到AWS并公开该文件的Ruby脚本。我做了以下事情:s3=Aws::S3::Resource.new(credentials:Aws::Credentials.new(KEY,SECRET),region:'us-west-2')obj=s3.bucket('stg-db').object('key')obj.upload_file(filename)这似乎工作正常,除了该文件不是公开可用的,而且我无法获得它的公共(public)URL。但是当我登录到S3时,我可以正常查看我的文件。为了使其公开可用,我将最后一行更改为obj.upload_file(file

  2. c# - 如何在 ruby​​ 中调用 C# dll? - 2

    如何在ruby​​中调用C#dll? 最佳答案 我能想到几种可能性:为您的DLL编写(或找人编写)一个COM包装器,如果它还没有,则使用Ruby的WIN32OLE库来调用它;看看RubyCLR,其中一位作者是JohnLam,他继续在Microsoft从事IronRuby方面的工作。(估计不会再维护了,可能不支持.Net2.0以上的版本);正如其他地方已经提到的,看看使用IronRuby,如果这是您的技术选择。有一个主题是here.请注意,最后一篇文章实际上来自JohnLam(看起来像是2009年3月),他似乎很自在地断言RubyCL

  3. java - 从 JRuby 调用 Java 类的问题 - 2

    我正在尝试使用boilerpipe来自JRuby。我看过guide从JRuby调用Java,并成功地将它与另一个Java包一起使用,但无法弄清楚为什么同样的东西不能用于boilerpipe。我正在尝试基本上从JRuby中执行与此Java等效的操作:URLurl=newURL("http://www.example.com/some-location/index.html");Stringtext=ArticleExtractor.INSTANCE.getText(url);在JRuby中试过这个:require'java'url=java.net.URL.new("http://www

  4. ruby - 调用其他方法的 TDD 方法的正确方法 - 2

    我需要一些关于TDD概念的帮助。假设我有以下代码defexecute(command)casecommandwhen"c"create_new_characterwhen"i"display_inventoryendenddefcreate_new_character#dostufftocreatenewcharacterenddefdisplay_inventory#dostufftodisplayinventoryend现在我不确定要为什么编写单元测试。如果我为execute方法编写单元测试,那不是几乎涵盖了我对create_new_character和display_invent

  5. 【鸿蒙应用开发系列】- 获取系统设备信息以及版本API兼容调用方式 - 2

    在应用开发中,有时候我们需要获取系统的设备信息,用于数据上报和行为分析。那在鸿蒙系统中,我们应该怎么去获取设备的系统信息呢,比如说获取手机的系统版本号、手机的制造商、手机型号等数据。1、获取方式这里分为两种情况,一种是设备信息的获取,一种是系统信息的获取。1.1、获取设备信息获取设备信息,鸿蒙的SDK包为我们提供了DeviceInfo类,通过该类的一些静态方法,可以获取设备信息,DeviceInfo类的包路径为:ohos.system.DeviceInfo.具体的方法如下:ModifierandTypeMethodDescriptionstatic StringgetAbiList​()Obt

  6. C51单片机——实现用独立按键控制LED亮灭(调用函数篇) - 2

    说在前面这部分我本来是合为一篇来写的,因为目的是一样的,都是通过独立按键来控制LED闪灭本质上是起到开关的作用,即调用函数和中断函数。但是写一篇太累了,我还是决定分为两篇写,这篇是调用函数篇。在本篇中你主要看到这些东西!!!1.调用函数的方法(主要讲语法和格式)2.独立按键如何控制LED亮灭3.程序中的一些细节(软件消抖等)1.调用函数的方法思路还是比较清晰地,就是通过按下按键来控制LED闪灭,即每按下一次,LED取反一次。重要的是,把按键与LED联系在一起。我打算用K1来作为开关,看了一下开发板原理图,K1连接的是单片机的P31口,当按下K1时,P31是与GND相连的,也就是说,当我按下去时

  7. 安卓apk修改(Android反编译apk) - 2

    最近因为项目需要,需要将Android手机系统自带的某个系统软件反编译并更改里面某个资源,并重新打包,签名生成新的自定义的apk,下面我来介绍一下我的实现过程。APK修改,分为以下几步:反编译解包,修改,重打包,修改签名等步骤。安卓apk修改准备工作1.系统配置好JavaJDK环境变量2.需要root权限的手机(针对系统自带apk,其他软件免root)3.Auto-Sign签名工具4.apktool工具安卓apk修改开始反编译本文拿Android系统里面的Settings.apk做demo,具体如何将apk获取出来在此就不过多介绍了,直接进入主题:按键win+R输入cmd,打开命令窗口,并将路

  8. ruby - 如何找到调用当前方法的方法 - 2

    如何找到调用此方法的位置?defto_xml(options={})binding.pryoptions=options.to_hifoptions&&options.respond_to?(:to_h)serializable_hash(options).to_xml(options)end 最佳答案 键入caller。这将返回当前调用堆栈。文档:Kernel#caller.例子[0]%rspecspec10/16|===================================================62=====

  9. ruby-on-rails - 使用 HTTParty 的非常基本的 Rails 4.1 API 调用 - 2

    Rails相对较新。我正在尝试调用一个API,它应该向我返回一个唯一的URL。我的应用程序中捆绑了HTTParty。我已经创建了一个UniqueNumberController,并且我已经阅读了几个HTTParty指南,直到我想要什么,但也许我只是有点迷路,真的不知道该怎么做。基本上,我需要做的就是调用API,获取它返回的URL,然后将该URL插入到用户的数据库中。谁能给我指出正确的方向或与我分享一些代码? 最佳答案 假设API为JSON格式并返回如下数据:{"url":"http://example.com/unique-url"

  10. ruby - 为什么当我调用类的实例方法时,初始化不显示为方法? - 2

    我正在写一篇关于在Ruby中几乎一切都是对象的博客文章,我试图通过以下示例来展示这一点:classCoolBeansattr_accessor:beansdefinitialize@bean=[]enddefcount_beans@beans.countendend所以从类中我们可以看出它有4个方法(当然,除非我错了):它可以在创建新实例时初始化一个默认的空bean数组它可以计算它有多少个bean它可以读取它有多少个bean(通过attr_accessor)它可以向空数组写入(或添加)更多bean(也通过attr_accessor)但是,当我询问类本身它有哪些实例方法时,我没有看到默认

随机推荐