在 MapView 中保存标记

发布于 2024-10-28 15:21:48 字数 296 浏览 4 评论 0原文

我有一个地图视图来在其上设置标记。我想将这些点存储为行程的一部分,稍后当我选择该行程时能够看到我之前添加的标记。

我见过的所有示例都使用 XML 中的 file.plist 文件,其中包含他们想要解析并在地图视图上绘制的所有点。但不是相反,这是从点创​​建文件。

我想到了几种方法来做到这一点:

  1. 创建 file.plist。稍后检索数据会更容易,但创建起来会更麻烦。
  2. 将这些点与行程点一起存储在数据库中,并在以后检索它们。

期待您的建议。

最好的 大卫.

I have a mapView to set markers on it. I would like to store this points as part of an itinerary, and later when I select that itinerary been able to see the markers that previoulsy I added.

All examples I have seen work with a file in XML a file.plist with all the points that they want to parse and draw on the mapview. But not the oposite, this is create the file from the points.

I have thought of several ways of doing this:

  1. Creating the file.plist. It will be easier to retrive the data later, but more hassle to create.
  2. Storing the points in a database along with the points of the itinerary and retriving them later.

Looking forward your advice.

Best
David.

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

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

发布评论

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

评论(1

那些过往 2024-11-04 15:21:48

我在数据库中实现了一个行程表。将表的 id 作为主表 Itineraries 的外键。我认为这种方式比创建 XML file.plist 更容易。

当您拥有静态点时,file.plist 非常有用,因为它为您提供了访问变量的方法:

PlistProperties pr = PlistFactory.createReader().parse(file);
Vector<PlistProperties> places = pr.getValues();
Object concretePlaces = places.get(0);
Vector<PlistProperties> pl = (Vector<PlistProperties>) concretePlaces;

但在这种情况下,我可以使用数据库中的坐标存储来创建标记。

OverlayItem overlayitem = new OverlayItem(point, id, POIsDBHelper.getName(id));

I have implemented a table in a database for the itineraries. with the id of the table as foreing key of the main table Itineraries. I think is easier this way than create the XML file.plist.

The file.plist it's very helpful when you have the static points, as offers you methods to access the variables:

PlistProperties pr = PlistFactory.createReader().parse(file);
Vector<PlistProperties> places = pr.getValues();
Object concretePlaces = places.get(0);
Vector<PlistProperties> pl = (Vector<PlistProperties>) concretePlaces;

But in this case I can create the markers using the coordinates store in the database.

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