ngx-admin/src/app/pages/maps/search-map/search-map.component.ts

16 lines
382 B
TypeScript
Raw Normal View History

import { Component } from '@angular/core';
import { Location } from './entity/Location';
@Component({
selector: 'ngx-search-map',
templateUrl: './search-map.component.html',
})
export class SearchMapComponent {
searchedLocation: Location = new Location();
updateLocation(event: Location) {
this.searchedLocation = new Location(event.latitude, event.longitude);
}
}