Exemplo n.º 1
0
 public Address(string formatted, string country, string city, string street, string number, string apt,
     string floor, string entrance, string comment, LatLng latLng, string countryCode, string postalCode)
 {
     this.formatted = formatted;
     this.country = country;
     this.city = city;
     this.street = street;
     this.number = number;
     this.apt = apt;
     this.floor = floor;
     this.entrance = entrance;
     this.comment = comment;
     this.latLng = latLng;
     this.countryCode = countryCode;
     this.postalCode = postalCode;
 }
Exemplo n.º 2
0
 public CLatLng(LatLng latLng)
 {
     this.latLng = latLng;
 }