google.maps.Geocoder()在cordova 2.6中获取null

时间:2013-05-29 04:39:35

标签: android cordova google-geocoder

我在我的phonegap项目中使用地理编码器。这在使用cordova 1.7时工作正常但是当我将cordova版本更改为2.6时,它返回undefined ..

知道我错过了什么吗?

var geocode= new google.maps.Geocoder()

1 个答案:

答案 0 :(得分:2)

使用var geocode = new google.maps.Geocoder();

创建类的任何对象时(当然Javascript只有对象),使用new来实例化。