-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Use all url templates provided by terrain config file #3038
Conversation
Thanks for the contribution, @oterral. I don't believe we have a Contributor's License Agreement (CLA) for you or your organization. Can you send one in? See https://github.com/AnalyticalGraphicsInc/cesium/blob/master/CONTRIBUTING.md Also, check out the pull request guidelines in that doc. For example, I imagine we will want to include a unit test and update to CHANGES.md for this change. |
Yep I can try. |
Great, thanks @oterral. If there's any questions about the CLA, feel free to contact me directly. |
We have a CLA now. @kring can you review this? |
And a test :) |
}).then(function() { | ||
spyOn(loadWithXhr, 'load'); | ||
provider.requestTileGeometry(0, 0, 0); | ||
expect(loadWithXhr.load.calls.mostRecent().args[0]).toContain('foo0.ch'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test is currently failing because the json specifies .com
and the test expects .ch
. Otherwise this looks good and I'll merge it as soon as the test is fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fix
@kring I've fixed the test. |
Thanks @oterral! |
Use all url templates provided by terrain config file
Thx for the review!!! |
Ready to review.