错误:没有为node-googlemaps定义GoogleMapsAPI



我使用Node -googlemaps从Node js查询Google Maps API。我已经创建了我的服务器API密钥作为开发人员。根据本文档,我必须使用我的API键和某些其他参数制作publicConfig变量。我的publicConfig变量如下:

 var gm = require('googlemaps');
 var publicConfig = {
  key: 'myKey',
  stagger_time:1000, // for elevationPath
  encode_polylines:false,
  secure:true // use https
};
 var gmAPI = new GoogleMapsAPI(publicConfig);

当我运行代码时,我得到以下错误

 ReferenceError: GoogleMapsAPI is not defined
有人能在这个问题上帮我一下吗?

要解决这个问题,我必须包含以下代码行

var GoogleMapsAPI = require('googlemaps');

相关内容

  • 没有找到相关文章

最新更新