Sedang membina apl peta. Mencuba setiap kaedah yang saya temui di internet untuk menambah markup tetapi masih tidak berfungsi. Adakah saya melakukan sesuatu yang salah?
Ini kod Angular saya:
Entah bagaimana lebih mudah untuk menggunakan Risalah, tetapi saya tidak mahu berputus asa pada Lapisan Terbuka begitu awal.
export class MapComponent implements OnInit{ map! : Map; marker! :any; center = fromLonLat([5.5697, 50.6330]); iconFeature = new Feature({ geometry : new Point(fromLonLat([5.5697, 50.6330])) }) ngOnInit(): void { this.map = new Map({ view : new View({ center : this.center, zoom : 0 }), layers : [ new LayerVector({ source : new SourceVector({ features : [this.iconFeature] }), style : new Style({ image : new Icon({ anchor : [0.5, 46], src : '../assets/istockphoto-1153114937-2048x2048-removebg-preview.png' }) }) }), new TileLayer({ source : new OSM() }) ], target : "map" }) } }
boleh cuba contoh kod ini