-
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
Geocoder is not working if I provide true value explicitly #6826
Comments
Thanks for reporting this @SurajitChowbey! We currently expect either a @mramato do you have an opinion here? I feel like overloading the |
A better solution is to remove |
I believe this mirrors similar SDKs at the time it was written, but it was so long ago I don't remember for sure. I would recommend just handling the case where the value is |
The geocoder is enabled by default, so it already works like |
In retrospect we probably should have used |
Thanks @SurajitChowbey! This was fixed and will be included in the Cesium 1.48 release available August 1st |
Welcome |
Geocoder is not working if I provide true value explicitly.
Please take a look on the following code:
Not working example:
var viewer = new Cesium.Viewer('cesiumContainer',{ geocoder: true, });
Working example:
var viewer = new Cesium.Viewer('cesiumContainer',{ /*geocoder: true,*/ });
The text was updated successfully, but these errors were encountered: