Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meteogram: jsonp provider funktioniert nicht mehr #204

Open
medlor opened this issue Feb 26, 2017 · 1 comment
Open

meteogram: jsonp provider funktioniert nicht mehr #204

medlor opened this issue Feb 26, 2017 · 1 comment

Comments

@medlor
Copy link

medlor commented Feb 26, 2017

Hallo,

anscheinend hat highcharts ihre jsonp Provider "sample" URL deaktiviert! Das geht zB nicht mehr http://www.highcharts.com/samples/data/jsonp.php?url=http://www.yr.no/place/Tyskland/Bayern/Muenchen/forecast_hour_by_hour.xml&callback=?.

Die Lösung war für mich, dass ich deren JSONP Provider unter https://raw.githubusercontent.com/highcharts/highcharts/master/samples/data/jsonp.php
auf meinen eigenen Webserver kopiert habe und dann im "js/widget_meteogram.js" (Zeile 48) die URL dementsprechend angepasst habe.

$.getJSON(
'http://www.highcharts.com/samples/data/jsonp.php?url=' + locationURL + '&callback=?',
function (xml) {
var meteogram = new Meteogram(xml, elem[0]);
}
);

Offenes Problem:
Bei jedem Update ist dieser Change aber wieder weg und muss nachgezogen werden.

Kann man diese URI parametrisierbar machen, damit ich nicht jedesmal den Code manuell ändern muss?

Viele Grüße
Tobias

@HermiU
Copy link

HermiU commented Oct 5, 2017

Hallo Tobias,

ich habe gerade einen PullRequest #210 erzeugt, der es ermöglichen soll neben Width, Height und Refresh auch die URL zu konfigurieren.

Gruß,
Hermann

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants