临时缓存地图的一部分(MapView)

发布于 2024-11-02 10:31:58 字数 206 浏览 0 评论 0原文

我正在开发一个带有 MapView 和 GPS 的应用程序。 我的问题是用户在使用我的应用程序时可能会断开连接,因此他将在完全灰色的地图中行走。我想暂时缓存地图以便稍后查看。 我知道谷歌地图 API 不允许缓存地图,但我想确定是否也禁止临时缓存它(并在应用程序关闭时删除它)。

我听说过 openstreetmaps / osmdroid,但我想确认在删除一半代码之前我必须使用它。

I'm developing an application with the MapView and the GPS.
My problem is that the user might disconnect while using my application, so he'll be walking in a fully grey map. I'd like to cache the map temporarily in order to see it later.
I know that cache the map isn't allowed by the google maps API, but I want to be sure if TEMPORARILY cache it (and delete it when the app is closed) is also forbidden.

I've heard about openstreetmaps / osmdroid, but I'd like to confirm that I HAVE to use it before deleting half of my code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

北风几吹夏 2024-11-09 10:31:58

我知道谷歌地图 API 不允许缓存地图,但我想确定是否也禁止临时缓存地图(并在应用程序关闭时删除它)。

Android 版 Google 地图插件无法实现此目的。

I know that cache the map isn't allowed by the google maps API, but I want to be sure if TEMPORARILY cache it (and delete it when the app is closed) is also forbidden.

There is no means of accomplishing this with the Google Maps Add-On for Android.

葬花如无物 2024-11-09 10:31:58

因为我需要satelliteView,所以我最终使用了一个可以改进的方法。

我启动一个线程,要求控制器前往用户附近的位置。它已下载,缓存由 MapView 管理:

int latitudeSpan = mapView.getLatitudeSpan();
        int longitudeSpan = mapView.getLongitudeSpan();
        for(int i=-MEMORIZED_MAP_SIZE;i<=MEMORIZED_MAP_SIZE;i++)
        {
            for(int j=-MEMORIZED_MAP_SIZE;j<=MEMORIZED_MAP_SIZE;j++)
            {
                synchronized (this) 
                {
                    if(i==j&&j==0) j++;
                    Message msg = new Message();
                    msg.arg1=latitude+latitudeSpan*i;
                    msg.arg2=longitude+longitudeSpan*j;
                    msg.setTarget(MainActivity.handler);
                    msg.sendToTarget();
                    try
                    {
                    wait(5000);
                    }
                    catch(Exception e){}
                }
            }
        }

现在,我只需要找到“wait(5000)”之外的另一种方法即可知道我正在查看的地图部分已下载。如果我找到一条消息,我会修改此消息。

Because I need the satelliteView, I finally used a method that could be improved.

I start a thread that asks the controler to go to a location near the user. It's downloaded and the cache is managed by the MapView:

int latitudeSpan = mapView.getLatitudeSpan();
        int longitudeSpan = mapView.getLongitudeSpan();
        for(int i=-MEMORIZED_MAP_SIZE;i<=MEMORIZED_MAP_SIZE;i++)
        {
            for(int j=-MEMORIZED_MAP_SIZE;j<=MEMORIZED_MAP_SIZE;j++)
            {
                synchronized (this) 
                {
                    if(i==j&&j==0) j++;
                    Message msg = new Message();
                    msg.arg1=latitude+latitudeSpan*i;
                    msg.arg2=longitude+longitudeSpan*j;
                    msg.setTarget(MainActivity.handler);
                    msg.sendToTarget();
                    try
                    {
                    wait(5000);
                    }
                    catch(Exception e){}
                }
            }
        }

Now, I just need to find another way than "wait(5000)" to know that the part of the map I'm looking at is downloaded. I'll modify this message if I find one.

野味少女 2024-11-09 10:31:58

你有完整的例子吗?

    int latitudeSpan = mapView.getLatitudeSpan();
    int longitudeSpan = mapView.getLongitudeSpan();
    for(int i=-MEMORIZED_MAP_SIZE;i<=MEMORIZED_MAP_SIZE;i++)
    {
        for(int j=-MEMORIZED_MAP_SIZE;j<=MEMORIZED_MAP_SIZE;j++)
        {
            synchronized (this) 
            {
                if(i==j&&j==0) j++;
                Message msg = new Message();
                msg.arg1=latitude+latitudeSpan*i;
                msg.arg2=longitude+longitudeSpan*j;
                msg.setTarget(MainActivity.handler);
                msg.sendToTarget();
                try
                {
                wait(5000);
                }
                catch(Exception e){}
            }
        }
    }

我设法使用 2 个 MapView Fragments 部分解决了这个问题,其中一个是不可见的。
然后循环移动相机为其他 MapView 创建缓存

Do you have the whole example of this?

    int latitudeSpan = mapView.getLatitudeSpan();
    int longitudeSpan = mapView.getLongitudeSpan();
    for(int i=-MEMORIZED_MAP_SIZE;i<=MEMORIZED_MAP_SIZE;i++)
    {
        for(int j=-MEMORIZED_MAP_SIZE;j<=MEMORIZED_MAP_SIZE;j++)
        {
            synchronized (this) 
            {
                if(i==j&&j==0) j++;
                Message msg = new Message();
                msg.arg1=latitude+latitudeSpan*i;
                msg.arg2=longitude+longitudeSpan*j;
                msg.setTarget(MainActivity.handler);
                msg.sendToTarget();
                try
                {
                wait(5000);
                }
                catch(Exception e){}
            }
        }
    }

I managed to solve this partially using 2 MapView Fragments , one of them invisible.
Then a loop was moving the camera to create cache for the other MapView

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文