如何在 adobe air 中获取 OpenStreetMap 图像?

发布于 2024-08-09 04:55:22 字数 297 浏览 4 评论 0原文

我尝试使用 javascript 和 html 将 openstreetmap 中的图像加载到 Air 应用程序中,但图像没有出现。我从 flickr 获取图像没有问题。这是图像网址: 来自 OSM 的地图图像

I try to load an image from openstreetmap into an air application using javascript and html but the image doesnt appear. I've no problems getting images from flickr. This is the image url: Map image from OSM

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

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

发布评论

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

评论(1

ゃ人海孤独症 2024-08-16 04:55:23

如果问题在于缺少文件扩展名,请尝试使用其他 OpenStreetMap 图形源。
导出选项卡可能会帮助您:

以下网址将为您导出给定坐标的地图:

http://tile.openstreetmap.org/cgi-bin/export?bbox=7.3229,51.4641,7.6127,51.6127&scale=110000&format= png

纬度 = 51.4641 - 51.6127
朗 = 7.3229 - 7.6127
格式=mapnik
文件格式 = png
比例= 110000

此 URL 将导致下载,但如果我尝试此操作:

<img src="http://tile.openstreetmap.org/cgi-bin/export?bbox=7.3229,51.4641,7.6127,51.6127&scale=110000&format=png" alt="OSM-Map" width="100%" />

并且它有效,则显示了地图。
也许这是解决您问题的简单方法

If the missing file extension is the problem, try another source for OpenStreetMap graphics.
The export tab may help you:

The following url will export you a map for the given coordinates:

http://tile.openstreetmap.org/cgi-bin/export?bbox=7.3229,51.4641,7.6127,51.6127&scale=110000&format=png

Lat = 51.4641 - 51.6127
Lon = 7.3229 - 7.6127
Format = mapnik
File format = png
Scale = 110000

This URL will cause a download but if I tried this:

<img src="http://tile.openstreetmap.org/cgi-bin/export?bbox=7.3229,51.4641,7.6127,51.6127&scale=110000&format=png" alt="OSM-Map" width="100%" />

And it worked, the map was displayed.
Maybe this is a simple solution to your problem

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