class LatLng { final double lat; final double lng; LatLng(this.lat, this.lng); LatLng.empty() : lat = 0, lng = 0; }