internal GLocation(LatLng latLng, string locationName) { this.latLng = latLng; this.locationName = locationName; }
/// <summary> /// Initializes a new instance of the <see cref="GLocation"/> class. /// </summary> /// <param name="latLng">The latitude/longitude of the location.</param> public GLocation(LatLng latLng) { this.latLng = latLng; }