I have following input inside a form:
<form [ngFormModel]="newListingForm" (ngSubmit)="submitListing(newListingForm.value)">
<input type="text" placeholder="00.000" #mapLatitudeInput="ngForm" [ngFormControl]="newListingForm.controls['mapLatitudeInput']">
</form>
I need to update its value when I'm dragging map around, so from related component that looks like this:
import {Component} from 'angular2/core';
import {FORM_DIRECTIVES, FormBuilder, ControlGroup, Validators} from 'angular2/common';
@Component({
templateUrl : 'app/components/new-listing/new-listing.html',
directives: [FORM_DIRECTIVES]
})
export class NewListingComponent {
//Costructor
constructor(
fb: FormBuilder
){
//New Listing Form
this.newListingForm = fb.group({
'mapLatitudeInput': ['', Validators.required]
});
}
//Google maps
loadMap(latitude, longitude) {
var map = new google.maps.Map(document.getElementById('listing-map'), {
center: {lat: latitude, lng: longitude},
zoom: 18,
scrollwheel: false,
mapTypeControl: false,
streetViewControl: false
});
//Update coordinates on map drag
map.addListener('drag', function(event) {
//ISSUE HERE
this.newListingForm.controls.mapLatitudeInput.value = map.getCenter().lat()
//console.log(map.getCenter().lat());
//console.log(map.getCenter().lng());
});
}
//TODO Form submission
submitListing(value: string): void {
console.log("Form Submited");
}
//Log error
logError(err) {
console.error('Error: ' + err);
}
}
What I thought would be a correct way is where //ISSUE HERE
comment is, but that throws an undefined error.