English 中文(简体)
谷歌地图静态地图-自定义图标限制
原标题:Google Maps Static Map - Custom icons limit

我正在从谷歌地图中生成一个静态地图,其中最多有26个自定义图标(在本例中为15个),但出于某种原因,它只加载前5个图标。以下是网址:

http://bit.ly/fGdtft

谷歌地图对可以加载的图标数量有限制吗?文档-所有其他图像都存在,事实上,如果我用图标H切换图标a,图标H将出现在图标a应该位于的位置和图标H应该位于的http://bit.ly/elk8kB

有没有其他人在这方面取得了成功?

问题回答

从静态api文档中:

 Static Maps service allows up to five unique custom icons per request. 
Note that each of these unique icons may be used multiple times within the static map.

对不起:(

以下是我如何避开这一点:

  1. 你可能已经知道怎么做了,而且根据你的来源,无论如何都会有所不同,但要收集所有的地图数据。所需的位是:中心点、缩放、地图类型和输出图像大小。我将假设传感器(如果应用程序可以访问GPS)是错误的。此外,你还需要所有的标记信息,其中包括你将要使用的图标,以及它们的地理坐标。

  2. 我把这一切张贴在CF页面上,这将使所有的魔法发生。

  3. 将你的前5个点绘制为正常。以.png格式获取结果

  4. 映射接下来的5个点,但将“style=feature:all|visibility:off”添加到查询字符串中,结果为.png。这将为您提供一个具有透明背景的png,但上面有所有标记图标。它将与初始地图的大小相同,标记将正确放置在该矩形中。

  5. 在初始地图的顶部添加水印。注意:根据您选择的语言及其提供的图像处理功能,这一步骤可能会变化最大。

  6. 重复第4步和第5步,直到你有了所有的标记。

  7. 写下你的图像,上面有所有的标记。

  8. 提供一个指向该文件的链接,而不是使用普通的谷歌链接。

我有更详细的解释此处带有ColdFusion中的一些代码示例。





相关问题
How to decide the current point reach on google map?

How to decide the current point reach on google map? I have a list of points (pickup points) of a route that I want to show in my google map with polyline. Now i have to get the current location of ...

Topographical or relief data in Map APIs

I was wondering if anyone knew of any map APIs that offer topographical or relief data? I ve had a quick look at Google and Bing APIs, but could find nothing there. Google allow you to view a map as ...

Using maps on Windows Mobile

I m experimenting with maps on different mobile platforms. Getting Google Maps to work on Android was easy, following this tutorial. Getting the same to work on Windows Mobile is a different matter. ...

Adding a custom icon to a google map

I need a hand adding a custom icon to some Google Maps javascript. Code below for your reference: function populateMap() { var map = new GMap2(document.getElementById("map")); map.setCenter(new ...

RSS to KML Overlay

I m want to display my blog as a Google Map overlay (each post contains geotags). How can I dynamically create a KML overlay from an RSS? Or better, how can I create a loop (PHP) that would display ...

开放街道地图管理员

我需要开放Street的标记管理员。 地图,如山角地图。

热门标签