作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 Angular 6 应用程序中使用谷歌地图。
我也一直在另一个项目中使用这个谷歌地图。但最近我开始另一个项目并安装 angular agm。然后使用我以前项目使用的 API key 。但它没有用。说'这是一个无效的 key '。所以我得到了新的 API key ,但也有同样的问题。
这是浏览器中显示的问题。
Google Maps JavaScript API warning: InvalidKey https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key util.js:222:33
Google Maps JavaScript API error: InvalidKeyMapError
https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key-map-error js:51:110
_.Jc
https://maps.googleapis.com/maps/api/js:51:110
on/this.l</<
https://maps.googleapis.com/maps-api-v3/api/js/35/8/common.js:73:375
_.qn</<
https://maps.googleapis.com/maps-api-v3/api/js/35/8/common.js:138:172
c
https://maps.googleapis.com/maps-api-v3/api/js/35/8/common.js:67:82
<anonymous>
https://maps.googleapis.com/maps/api/js/AuthenticationService.Authenticate:1:22
<agm-map [latitude]="mapDetails.latitude" [longitude]="mapDetails.longitude" (mapClick)=" onChooseLocation($event)">
<agm-marker [latitude]="mapDetails.latitude" [longitude]="mapDetails.longitude"></agm-marker>
</agm-map>
import { Component, OnInit, Output, EventEmitter } from '@angular/core';
import { MapDetails } from '../shared/models/map-details.model';
@Component({
selector: 'app-maps',
templateUrl: './maps.component.html',
styleUrls: ['./maps.component.css']
})
export class MapsComponent implements OnInit {
mapDetails: MapDetails = new MapDetails();
@Output() public mapClickEvent = new EventEmitter();
constructor() { }
ngOnInit() {
this.mapDetails.latitude=6.9271;
this.mapDetails.longitude=79.8612;
}
onChooseLocation(event){
this.mapDetails.latitude=event.coords.lat;
this.mapDetails.longitude=event.coords.lng;
this.mapClickEvent.emit(this.mapDetails);
}
}
import { JobDoneComponent } from './../../job-done/job-done.component';
import { RatingComponent } from './../../rating/rating.component';
import { NotificationsComponent } from './../../notifications/notifications.component';
import { ProvidedJobsComponent } from './../../provided-jobs/provided-jobs.component';
import { CompletedJobsComponent } from './../../completed-jobs/completed-jobs.component';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { UserLayoutRoutes } from './user-layout.routing';
import { UserProfileComponent } from '../../user-profile/user-profile.component';
import { ChartsModule } from 'ng2-charts';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { ToastrModule } from 'ngx-toastr';
import {ComplainComponent} from '../../complain/complain.component';
import { UserLogInComponent } from 'app/user-log-in/user-log-in.component';
//import {MatButtonModule, MatCheckboxModule, MatDialog, MAT_DIALOG_DATA, MatDialogConfig} from '@angular/material';
import { MatFormFieldModule,MatCardModule,MatStepperModule,MatSelectModule,MatButtonModule, MatCheckboxModule, MatInputModule,MatDatepickerModule, MatNativeDateModule, MatToolbarModule, MatSidenavModule, MatIconModule, MatListModule} from '@angular/material';
import {MatDialogModule} from '@angular/material/dialog';
import { PostJobsComponent } from '../../post-jobs/post-jobs.component';
import { PostPaymentsComponent } from '../../post-payments/post-payments.component';
import {MapsComponent} from '../../maps/maps.component';
import { DraftPostComponent } from '../../draft-post/draft-post.component';
import { JobRequestComponent } from '../../job-request/job-request.component';
import { AgmCoreModule } from '@agm/core';
@NgModule({
imports: [
CommonModule,
RouterModule.forChild(UserLayoutRoutes),
FormsModule,
ChartsModule,
NgbModule,
ToastrModule.forRoot(),
AgmCoreModule.forRoot({
apiKey:'My_API_KEY'
}),
MatDialogModule,
MatFormFieldModule,
MatCardModule,
MatStepperModule,
MatSelectModule,
MatButtonModule,
MatCheckboxModule,
MatInputModule,
MatNativeDateModule,
MatToolbarModule,
MatSidenavModule,
MatIconModule,
MatListModule
],
declarations: [
PostJobsComponent,
PostPaymentsComponent,
DraftPostComponent,
UserProfileComponent,
JobRequestComponent,
ComplainComponent,
MapsComponent,
CompletedJobsComponent,
ProvidedJobsComponent,
NotificationsComponent,
JobDoneComponent,
RatingComponent
],
entryComponents: [RatingComponent]
})
export class UserLayoutModule { }
最佳答案
您可能会加载 Google Maps API 两次,请检查您是否在提供程序中加载它
uiGmapGoogleMapApi.then(function(maps) {});
<script src="https://maps.googleapis.com/maps/api/js"></script>
关于angular - 如何修复 Angular 6 中的 'Google Maps JavaScript API error: InvalidKeyMapError' 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54283684/
我构建了一个 Gatsby 站点,该站点使用我从 npm 包“google-maps-react”中获取的 google maps 组件。在我的本地环境中一切正常,但是当我部署到 Netlify 时,
我在我的 Angular 6 应用程序中使用谷歌地图。 我也一直在另一个项目中使用这个谷歌地图。但最近我开始另一个项目并安装 angular agm。然后使用我以前项目使用的 API key 。但它没
我是一名优秀的程序员,十分优秀!