Android - 是否可以在 .png 上进行导航?

Android - Is it possible to make a navigation on a .png?

我从后端得到了经纬度,我想用PNG作为地图,因为这张地图是自制的。所以我想在这个 PNG 上转移我的经纬度,然后在这个位置画一个点,但我不知道该怎么做...... 我在另一个问题中找不到它。也许它是如此简单,以至于没有人问过这个问题。

我是 Android 的新手,也是 Whosebug 的新手:)

因评论而编辑:图片是自制地图。它是用 ESRI cityengine 和 Blender 制作的。然后我制作了地图的鸟瞰图截图,这张截图我想用作我的地图。

编辑 2:@MarkusKauppinen 发表了很好的评论!所以我也想将 lat/long 转换为屏幕的 x/y 坐标(如 (How do android screen coordinates work?) )。但是我后端的 lat/long 与地球的 lat/long 无关。

甚至认为这个问题有一个反对票,可能没有人会看到它,我可以想出如何解决我的问题。 我用这个 Canvas Bitmap Method to draw the map on my screen. Then I converted the lat/long coordinates so that they fit on the Screen of the mobile phone with the help of this post: How do android screen coordinates work? 使用转换后的 lat/long 坐标,我可以 draw a circle 在地图上的当前位置。现在,当坐标改变时,圆圈会像它应该的那样移动。