public void UseHttp_with_true_should_set_scheme_to_https()
        {
            var control = new GoogleStaticMapControl(320, 240, GoogleMapType.Default).AsUrl();

            control.UseHttps(true);

            var result = control.ToHtmlString();

            Uri.IsWellFormedUriString(result, UriKind.Absolute).Should().BeTrue();
            result.Should().StartWith("https://");
        }