示例#1
0
 internal GLocation(LatLng latLng, string locationName)
 {
     this.latLng       = latLng;
     this.locationName = locationName;
 }
示例#2
0
 /// <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;
 }