English 中文(简体)
页: 1
原标题:Problem of multiple marker on same position in Google Map API

我在申请时使用权图。 我的地图上有数千个标识。

我可以很好地展示这些内容。 我正在使用MySQL作为我的营地数据库。

但当同一职位有一个以上地点时,我就存在问题。 它只为所有地点显示一个标识(相同位置)。

在APIC中,没有解决办法。 谁能帮助我?

预告......

问题回答

它不是“问题”。 思考...... 红十字与红新月联会的多个点都与EXACT SAME的地理位置相同,它们全都由一个SINGLE点代表。 然而,实际情况是,同一点的所有标识都放在顶上。

What you might want to try using is the MarkerClusterer to represent how many markers share the same geographic location as a cluster: http://googlegeodevelopers.blogspot.com/2009/04/markerclusterer-solution-to-too-many.html

OTOH,如果你拥有许多共用SAME所在地点首先需要集群的点,那么将其分解为最高层就绝对毫无意义。 此外,这并不是标志者会做的事。

If you do need a possible solution on how to represent multiple points at the same location individually, see my blog: http://act28.blogspot.com/2011/05/multiple-locations-with-same-latlong.html

For lat/lon appearing at the same place when zoomed, but actual different, look at the grouping example at exactly 同样的立场是,你只能稍微改变立场。

就像你把一个标记直接放在另一个标识之上一样。 你们是否使用相对/长的坐标? 如果是的话,你可以通过随机增加或从重复的相对/长期中减去(非常)小值来调整重复地点。 金 ha,但我不敢肯定你如何处理这个问题。

在特殊阵列钥匙中, i取了长期/相对价值。 然后,所有标识都将位于同一地点相同的阵列钥匙中,然后,你就可以将阵列振起来,在一个信息窗口中显示信息。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签