English 中文(简体)
需要增加45+点,以图
原标题:Need to add 45+ points to a google map

试图在地图上添加45个不同点,但我只收到<编码>>>> 查询-LIMIT 退回,没有地图。

我正在通过搜身寻找地点,然后将返回的LatLng物体转让给新的google Marker物体


String Search

var geocoder = new google.maps.Geocoder();
      geocoder.geocode( {  address : x}, function(results, status) {
        if (status === google.maps.GeocoderStatus.OK) {
            var result = results[0].geometry.location;
          return result;

        } else {
          alert("Geocode was not successful for the following reason: " + status);
        }
      });
最佳回答

谷歌地球编码在整个天都受到限制。 它也受IP地址的限制。 因此,两种可能的相互作用: 如果你与其他许多人重新分享一项IP地址,他们也可能削减配额。 在流动环境中尤其如此。 另一种可能性是,你在白天达到比率限制。 如果能做到这一点,就暂停第二次或两次,并再次尝试。

您也可以为业绩目的收集地理编码和地址,并拥有使用谷歌网络服务的备用服务器附属地理编码服务。 这还是一种配额制,但却是一个好的退缩。

问题回答

考虑将谷歌汇表用于数据储存及其地理编码部分,至少是它们的批量地理编码接口遵守自己的内部界限。

http://support.google.com/fusiontables/bin/answer.py?hl=en&answer=1012281

如果静态地址是静态的,并且为进一步使用而节省支线,那么你应如何处理这一问题。 如果没有静态th,我不知道什么。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签