qiuxiang / react-native-amap3d

react-native 高德地图组件,使用最新 3D SDK,支持 Android + iOS
https://qiuxiang.github.io/react-native-amap3d/api/
MIT License
1.28k stars 327 forks source link

有计划把sdk升级到9吗? #737

Open LewinJun opened 2 years ago

LewinJun commented 2 years ago

高德SDK看到版本到9.2.0了

qiuxiang commented 2 years ago

没问题

LewinJun commented 2 years ago

没问题

点赞,我5月底要用,看你这边什么时候空了升级好,等你的新版本

qiuxiang commented 2 years ago

版本发出去了,android 测了,ios 还没有,先看看吧,有问题再说

vision-llz commented 2 years ago

@qiuxiang 新版本ios地图空白,老哥

showtan001 commented 2 years ago

@qiuxiang ios地图不显示 2022-05-17 16:19:20.796650+0800 PineConesGoField[62915:6383183] Error Domain=AMapFoundationErrorPrivacyShowUnknow Code=555570 "(null)" UserInfo={info=使用MAMapKit3D SDK 功能前请设置隐私权政策是否弹窗告知用户}

qiuxiang commented 2 years ago

今晚回去再看

qiuxiang commented 2 years ago

已更新

sdghf commented 2 years ago

android真机地图也是空白

qiuxiang commented 2 years ago

我测了没问题呀

action 编译的: https://github.com/qiuxiang/react-native-amap3d/runs/6473988089?check_suite_focus=true https://github.com/qiuxiang/react-native-amap3d/releases/download/v3.1.1/example.apk

qiuxiang commented 2 years ago
sdghf commented 2 years ago

是因为我的rn版本是0.68的原因吗?老哥,我定位可以成功,就是地图怎么都出不来

qiuxiang commented 2 years ago

actions 上就是用的 RN 最新版构建的

qiuxiang commented 2 years ago

https://github.com/qiuxiang/react-native-amap3d/blob/0b9f91ad026c1bff639e93175b6e8d455642cbb8/.github/workflows/release.yml#L10-L21

surethink commented 2 years ago

WechatIMG267

之前升了下,ios 真机打开地图时会crash,上图是监控到的错误,供参考。 诡异的是,查询的经度竟然是-122度,也可能是我定位有问题

ps: rn 0.66.1

LewinJun commented 2 years ago

给力啊,兄弟

StevenGardnerGMJ commented 2 years ago

Marker 如何显示infowindows 是用模拟器不能显示吗

<Marker
      // key={1}
      active
      title="这是一个标注点"
      description="Hello world!"
      onPress={() => {
        console.log('====Marker');
        return (
          <Tooltip popover={<Text>no caret!</Text>} withPointer={false}>
            <Text>without caret</Text>
          </Tooltip>
        );
      }}
      icon={
        1 === 1
          ? require('./res/marker_red.png')
          : require('./res/marker_green.png')
      }
      position={{
        latitude: 34.751148,
        longitude: 113.774146,
      }}>
<Text>这里是infowindow</Text>
</Marker>
hhy123540 commented 2 years ago

@sdghf 老哥 请问我这里也是地图未显示出来,报错确保调用SDK任何接口前先调用更新隐私合规updatePrivacyShow、updatePrivacyAgree两个接口并且参数值都为true,若未正确设置有崩溃风险,请问您解决了吗