Листовка - импорт Геойсон - Угловой 6

Я пытаюсь импортировать файл GeoJson в листовку в приложении Angular 6.

С этим решением мой geojson рисуется в листовой карте, но у меня есть эта ошибка, и я не могу создать свое приложение. Кто-то знает одно решение?

 ERROR TS2345 Argument of type '{"type": string;"features":({"type": string; "geometry": { "type: string : "coordinates": num...' is not assignable parameter of type GeoJsonObject   

enter code here

//Model.ts

export const Pdl = [ 'my geojson'
];

https://raw.githubusercontent.com/alanent/france-geojson/master/regions/pays-de-la-loire/departements-pays-de-la-loire.geojson

// Component.ts

import { LeafletModule } from '@asymmetrik/ngx-leaflet';
import * as L from 'leaflet';
import {Pdl} from "../models/pdl.model"; 

@Component({
  selector: 'app-geo',
  templateUrl: './geo.component.html',
  styleUrls: ['./geo.component.scss']
})
export class GeoComponent implements OnInit { 

ngOnInit() {    
var mapboxAccessToken = "...";

const myfrugalmap = L.map('frugalmap').setView([47.482019, -1], 7);

L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=' + mapboxAccessToken, {
    id: 'mapbox.light',
    attribution: 'SOS'
}).addTo(myfrugalmap);


L.geoJSON(Pdl).addTo(myfrugalmap);

}
}

Может быть, я могу скрыть ошибку? какой путь?

1 ответ

Решение

Вы должны сделать это "угловым путем", так как вы используете ngx-leaflet

По моему личному мнению, импорт json с помощью импорта является кошмаром, поэтому я хотел бы получить его при помощи запроса get при загрузке карты, а затем получить ссылку на объект карты и добавить геоджон.

шаблон:

import { HttpClient } from '@angular/common/http';
import * as L from 'leaflet';
..
map: L.Map;
json;
options = {
    layers: [
        L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { 
            maxZoom: 18, attribution: '...'
        })
    ],
    zoom: 7,
    center: L.latLng(47.482019, -1)
};

constructor(private http: HttpClient) { }

onMapReady(map: L.Map) {
    this.http.get('assets/departements.json').subscribe((json: any) => {
        console.log(json);
        this.json = json;
        L.geoJSON(this.json).addTo(map);
    });
}

шаблон

<div leaflet style="height: 800px"
    [leafletOptions]="options"
    (leafletMapReady)="onMapReady($event)">
</div>

демонстрация

Другие вопросы по тегам