gpt4 book ai didi

javascript - 引用错误 : google is not defined using ng-map GeoCoder service

转载 作者:行者123 更新时间:2023-11-29 10:07:41 25 4
gpt4 key购买 nike

我在尝试为 ng-map library 使用地理编码器服务时遇到以下错误:

angular.js:13642 ReferenceError: 未定义谷歌
在 Object.t [作为地理编码] (http://localhost:6240/Scripts/ng-map.min.js:25:28246)

我正在将服务注入(inject)我的 Controller

appModule.controller('MyController', ['$scope', 'NgMap', 'NavigatorGeolocation', 'GeoCoder', 
function ($scope, NgMap, NavigatorGeolocation, GeoCoder) {
GeoCoder.geocode({address: 'Avenida Calle 26 # 40-40, Bogotá'}).then(function (result) {
//... do something with result
console.log('RESULT GEOCODER: ', result);
});
}]);

我还使用 NgMap 函数对其进行了测试,得到了相同的引用错误

NgMap.getGeoLocation('Avenida Calle 26 # 40-40, Bogotá').then(function (result) {
console.log('GETGEOLOCATION: ', result);
}, function (error) {
console.log('Error getting geolocation: ', error);
});

如代码片段所示,我已成功使用其他 NgMap 和 NavigatorGeolocation 服务。

这是我的页面代码

<div map-lazy-load="https://maps.google.com/maps/api/js" map-lazy-load-params="{{ $ctrl.googleMapsUrl }}">
<div class="row">
<div class="col-md-6">
<ng-map id="map"
center="{{ $ctrl.mapCenter }}"
street-view="{{ $ctrl.svp }}"></ng-map>
</div>
<div class="col-md-6">
<ng-map id="sv" />
</div>
</div>
</div>

并在相应的 Controller /组件中

$ctrl.googleMapsUrl = "https://maps.googleapis.com/maps/api/js?key=MY-API-KEY";
$ctrl.mapCenter = 'current-location';

NavigatorGeolocation.getCurrentPosition({ timeout: 10000 }).then(function (ll) {
$ctrl.svp = "StreetViewPanorama(document.querySelector('ng-map#sv'), {position:new google.maps.LatLng(" + ll.coords.latitude + " , " + ll.coords.longitude + ")})";
}, function (error) {
console.log('error getCurrentPosition: ', error);
});

我正在使用 AngularJS v1.5.6

预先感谢您的帮助。

最佳答案

GeoCoder 服务使用 google.maps.Geocoder 类,它又是 Google Maps API 的一部分。在 Controller 中调用 GeoCoder.geocode 方法的那一刻 Google Maps 库尚未加载(在您的情况下,它是通过 map-lazy-load<异步加载的 指令),这就是发生此错误的原因。

您可以使用 NgMap.getMap 函数来保证 Google Maps API 准备就绪:

NgMap.getMap("map").then(function () {

GeoCoder.geocode({ address: 'Avenida Calle 26 # 40-40, Bogotá' })
.then(function (result) {
//...
});

});

演示

angular.module('mapApp', ['ngMap'])
.controller('mapCtrl', ['$scope', 'NgMap', 'NavigatorGeolocation', 'GeoCoder',
function ($scope, NgMap, NavigatorGeolocation, GeoCoder) {
vm = this;

NgMap.getMap("map").then(function () {

GeoCoder.geocode({ address: 'Avenida Calle 26 # 40-40, Bogotá' })
.then(function (result) {
vm.mapCenter = result[0].geometry.location;
});

});


vm.googleMapsUrl = "https://maps.googleapis.com/maps/api/js";
vm.mapCenter = null;


}]);
<script src="https://code.angularjs.org/1.5.6/angular.js"></script>
<script src="https://rawgit.com/allenhwkim/angularjs-google-maps/master/build/scripts/ng-map.js"></script>
<div ng-app="mapApp" ng-controller="mapCtrl as vm">

<div map-lazy-load="https://maps.google.com/maps/api/js" map-lazy-load-params="{{ vm.googleMapsUrl }}">
<ng-map id="map" center="{{ vm.mapCenter }}"></ng-map>
</div>

</div>

关于javascript - 引用错误 : google is not defined using ng-map GeoCoder service,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40193036/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com