Browse Source

fix: Remove test marker

master
Konstantinos Kamaropoulos 5 years ago
parent
commit
42703ae066
  1. 10
      src/app/about/about.component.ts

10
src/app/about/about.component.ts

@ -31,14 +31,10 @@ export class AboutComponent implements OnInit {
style: this.style, style: this.style,
center: [this.lng, this.lat], center: [this.lng, this.lat],
zoom: 9 zoom: 9
}); // Add map controls });
// this.map.addControl(new mapboxgl.NavigationControl());
var marker = new mapboxgl.Marker({ // Add map controls
draggable: false // this.map.addControl(new mapboxgl.NavigationControl());
})
.setLngLat([0, 0])
.addTo(this.map);
this.logsService.getLogs().subscribe((data: Array<Object>) => { this.logsService.getLogs().subscribe((data: Array<Object>) => {
this.data = data; this.data = data;

Loading…
Cancel
Save