本文介绍了Maps APIs:是否有可能在马来西亚地理编码前提或建筑物名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以根据马来西亚的建筑物名称对地址进行地理编码?我正在使用Maps APIs v3地理编码服务和首要许可证,但查询结果始终返回状态:ZERO_RESULTS。

在,前提搜索完美运行。任何想法,如果可能的Maps APIs?

解决方案

它应该有可能使用前提设置,但它将取决于如何强大地图数据库是以马来西亚为例:

  var buildingName =The Building Name; 

geocoder.geocode({'premise':buildingName},function(results,status){
...
}


Is it possible to geocode an address based on only building name in Malaysia? I am using Maps APIs v3 geocode service with premier license but the query result always returns status:ZERO_RESULTS.

In http://maps.google.com.my/, premise search is working perfectly. Any idea if it's possible for Maps APIs?

解决方案

It should be possible using the premise settings, but it would depend on how robust the maps database is for Malaysia as an example:

var buildingName = "The Building Name";

geocoder.geocode( { 'premise' : buildingName }, function(results, status) {
...
}

这篇关于Maps APIs:是否有可能在马来西亚地理编码前提或建筑物名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 05:24