Last active
February 6, 2020 10:12
-
-
Save ryder247/dcb423f11bd99df8933aaf007b49302c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| 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