NativeScript / NativeScript/plugins

[@nativescript/google-maps] No markers appeared on Android

未关闭
#345 3 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

主要语言
TypeScript
星标
206
派生
123
平均合并
2 天 1 小时
30 天内合并 PR
1

描述

I'm trying to populate markers for every coordinates in the map. It was working on iOS but not on Android

Only one marker appears on Android

Screen Shot 2022-10-07 at 4 54 38 PM

ns info:

✔ Getting NativeScript components versions information...
✔ Component nativescript has 8.3.3 version and is up to date.
✔ Component @nativescript/core has 8.3.5 version and is up to date.
✔ Component @nativescript/ios has 8.3.3 version and is up to date.
✔ Component @nativescript/android has 8.3.1 version and is up to date.

"@nativescript/geolocation": "^8.0.2"
"@nativescript/google-maps": "^1.4.7"

code:
loadLocations.forEach((loc) => { let marker = new Marker(); let img = new Image(); img.imageSource = ImageSource.fromFileSync('~/images/pin-atm2.png'); marker = { icon: img, position: { lat: loc.latitude, lng: loc.longitude }, visible: true, userData: loc, title: null } as Marker; this.map.addMarker(marker) });

any idea?

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

调研方向

使用提供的 marker loop 和图像,在列出的 NativeScript、Android、geolocation 和 google-maps 版本下复现该问题。检查 @nativescript/google-maps 中 Android 的 marker 处理,并根据报告的行为验证结果;当每个坐标都能像在 iOS 上一样在 Android 上生成可见的 marker 时,即完成。

由索引模型根据 Issue 内容生成。

评估

技术栈
android, typescript
领域
mobile-dev
Issue 类型
缺陷
难度
4/5
预计耗时
3-5 天
活跃度
停滞
描述清晰度
需要澄清
新手友好度
25/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。