Skip to content

Instantly share code, notes, and snippets.

@ryder247
Last active February 6, 2020 10:12
Show Gist options
  • Save ryder247/dcb423f11bd99df8933aaf007b49302c to your computer and use it in GitHub Desktop.
Save ryder247/dcb423f11bd99df8933aaf007b49302c to your computer and use it in GitHub Desktop.
//
getCountries() {
return this.http.jsonp(
`https://secure.geonames.org/countryInfoJSON?lang=${localStorage['language'] || ''}&username=<USERNAME_HERE>&style=short`,
'callback',
);
}
getChildren(geonameId: string) {
return this.http.jsonp(
`https://secure.geonames.org/childrenJSON? lang=${localStorage['language'] ||
''}&geonameId=${geonameId}&username=<USERNAME_HERE>&style=short`,
'callback',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment