Я пытаюсь добавить Azure Карты в простое приложение Angular.
Я получаю ошибку ниже. Любая идея, почему это происходит и как я могу это исправить?
atlas.min.js:2509 Error: AuthenticationManager finished initializing, but no token is available
at atlas.min.js:2509
at ZoneDelegate.invoke (zone-evergreen.js:365)
at Object.onInvoke (core.js:40794)
at ZoneDelegate.invoke (zone-evergreen.js:364)
at Zone.run (zone-evergreen.js:124)
at zone-evergreen.js:851
at ZoneDelegate.invokeTask (zone-evergreen.js:400)
at Object.onInvokeTask (core.js:40772)
at ZoneDelegate.invokeTask (zone-evergreen.js:399)
at Zone.runTask (zone-evergreen.js:168)
Шаги, которые я выполнил, чтобы добавить это:
1 - Установить Azure Карты
npm i azure-maps-control
2 - Создать компонент для карты
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormControl } from '@angular/forms';
import { AddressSearchService } from '../address-search.service';
import { AddressSearchJson, AddressSearchResult } from '../address-search-result.model';
import { Map, AuthenticationType, HtmlMarker } from 'azure-maps-control';
@Component({
selector: 'app-address-search',
templateUrl: './address-search.component.html',
styleUrls: ['./address-search.component.css']
})
export class AddressSearchComponent implements OnInit {
// Azure Active Directory Authentication Client ID
// or Shared Key Authentication KEY
// get it from portal.azure.com
key: 'sharedKeyPrimaryKey';
map: any;
ngOnInit(): void {
// Initialize a map instance.
this.map = new Map('mapContainer', {
authOptions: {
authType: AuthenticationType.subscriptionKey,
subscriptionKey: this.key
}
});
// Wait until the map resources are ready.
this.map.events.add('ready', () => {
// Create a HTML marker and add it to the map.
this.map.markers.add(new HtmlMarker({
color: 'DodgerBlue',
text: '10',
position: [0, 0]
}));
});
}
constructor(private adressSearchService: AddressSearchService) { }
}
3 - Создать представление
<div id="mapContainer"></div>
4 - Изменить angular. json
"styles": [
"src/styles.css",
"node_modules/azure-maps-control/dist/atlas.min.css"
],
"scripts": [
"node_modules/azure-maps-control/dist/atlas.min.js"
]
5 - убедитесь, что я использую правильный ключ Azure Карт (Аутентификация с общим ключом - Первичный ключ)