Moin zusammen.
Nach mehr als einem Jahr sauberen Betrieb meiner Software, in der eine Adreprfung ber Googlemaps integriert ist, wird pltzlich kein Googlemaps mehr geladen. Ich habe zwar so meine Vermutungen (http vs. https), bin mir aber noch nicht sicher, wie man das ganze am besten in den Griff kriegt.
Geladen wird googlemaps ber folgenden Code
[code] if TFplz.Text <> “” or TFort.Text <> “” then
dim text as string = TFplz.Text+" "+TFort.Text
if tfstrasse.Text <>"" then
text = tfstrasse.Text +" " +text
end if
if tfhausnr.Text <> "" Then
text = text+" "+tfhausnr.Text
end if
text = ConvertEncoding(text, encodings.UTF8)
text = EncodeURLComponent(text)
dim url as string = "http://maps.google.de/maps?hl=de&q="+text+"&ie=UTF-8"
if me.Visible = false then
me.Show
end if
HTMLViewer1.LoadURL url
end if
[/code]
Es mu durch eine nderung der Google API ausgelst worden sein, denn bisher ging es wie gesagt problemlos.
Freue mich ber Hilfe
Christian