using Framework.App; namespace Framework.Json.Bing { /// /// BingMap element. See also: https://www.bingmapsportal.com/ and https://www.bing.com/api/maps/sdk/mapcontrol/isdk/ /// For key see also: file ConfigCli.json BingMapKey /// public sealed class BingMap : ComponentJson { public BingMap(ComponentJson owner) : base(owner, nameof(BingMap)) { Key = UtilFramework.StringNull(new AppSelector().ConfigDomain.BingMapKey); } public string Long; public string Lat; public string Key; } }