本文介绍了Mapbox显示异常并在iOS中使用mbtiles时终止的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用MapBox示例,并且已经导入了mbtiles文件.我收到此错误:

I am using MapBox example and I have imported my mbtiles file. I am getting this error:

我已经检查了mbtile文件及其在x代码上的加载,因此没有问题.

I have checked my mbtile file and its loading on x-code so there no problem with it.

推荐答案

RMMBTilesSource确实在使用该代码.您需要确保您的OSMBright.mbtiles文件是项目目标的一部分,并已添加到您的捆绑软件中,以便可以将其作为切片源上拉.像您需要在应用程序中使用的任何资源一样,仅作为Xcode项目的一部分还不够.

RMMBTilesSource is indeed using that code. You need to make sure that your OSMBright.mbtiles file is part of the project's target and being added to your bundle so that it can be pulled up as a tile source. Like any resource that you need to use in your app, it's not enough to simply be part of the Xcode project.

这篇关于Mapbox显示异常并在iOS中使用mbtiles时终止的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-12 18:57