Google Map Location Picker
Simple editor that lets you pick a location and save the longitude and latitude
Last updated
Simple editor that lets you pick a location and save the longitude and latitude
Last updated
(Content!.GetValue<GoogleMapPosition>("PropertyAliasHere"))public class GoogleMapPosition
{
/// <summary>Gets or sets the latitude.</summary>
/// <value>The latitude.</value>
public double Lat { get; set; }
/// <summary>Gets or sets the longitude.</summary>
/// <value>The longitude.</value>
public double Lng { get; set; }
}