Gabby Getz

Results 774 comments of Gabby Getz

@dave-b-b Please confirm if this is still an issue by running `npm test -- --browsers Firefox`. See the [Testing Guide](https://github.com/CesiumGS/cesium/tree/main/Documentation/Contributors/TestingGuide#run-tests-with-a-specific-browser-or-browsers) for more info. The actual fix for this may be...

No worries, thanks @dave-b-b! It looks like this has escalated to a larger issue. I've updated the labels accordingly, and removed the "goof first issue" label.

Thanks @jjspace! As we talked about offline: #### MSAA This sounds like a gimme. Let's go ahead and enable 4x by default. When we have a "high end" or "low...

Hi @hibaAkroush Here's a code snippet: ``` var viewer = new Cesium.Viewer('cesiumContainer'); viewer.geocoder.viewModel.search.afterExecute.addEventListener(function(){ console.log('Search event fired'); }); ``` You'll see the event fires when the user selects a suggestion from...

You can run the above sample in [Sandcastle](https://cesiumjs.org/Cesium/Build/Apps/Sandcastle/index.html?src=Hello%20World.html&label=Showcases) to demonstrate the issue. You can also run this against your cloned repo by running: ``` npm run build npm start ```...

@mramato I can still reproduce, it's specifically only when clicking a suggestion (and not hitting enter or the search button) that it happens.

I can still reproduce. ``` var viewer = new Cesium.Viewer('cesiumContainer'); viewer.geocoder.viewModel.search.beforeExecute.addEventListener(function () { console.log('Searched!'); }); ``` 1. Type some text in the search box and hit enter. The camera will...