Results 44 comments of Jose Gómez

As an alternative to using the icon, one can also use the unicode search character: ``` .ol3-geocoder-btn-search { background-image: none; } .ol3-geocoder-btn-search:before { content: '🔍'; font-size: 0.7em; line-height: 0.8em; }...

Optionally, in case you prefer the old icon for non-HiDPI devices, this icon could be used only in HiDPI devices using media queries: ``` @media only screen and (-webkit-min-device-pixel-ratio: 1.3),...

I am afraid this may not work with 2.4.0, due to the styling changes. Will need to analyse the impact to port it to 2.4.0.

A lot of things work. Now, I don't know about most of these, but I do know about a few of them: * Interactions do not work; you have to...

@strech345 I am not sure I understand your question. With ol3-cesium you use the same API as ol3, and ol3-cesium internally translates the API requests into the Cesium API. You...

From https://github.com/openlayers/ol3-cesium/issues/344#issuecomment-208307019: > gberaudo commented 19 minutes ago > > The 2D OL3 interactions are not made available in 3D. > > OL3 ol.source.Cluster source is not adapted to the...

I have tried to have the layer redrawn, but have been unsuccessful so far. ``` map3d.getCamera().updateView(); map3d.getOlMap().changed(); map3d.getOlMap().render(); map3d.getOlMap().renderSync(); map3d.getOlMap().updateSize(); map3d.getOlMap().getLayers().forEach(function (l) { l.changed(); }, this); ``` None of the...

Thanks for the suggestion. I have just tried the following: ``` kmlLayer.values_.source.changed(); kmlLayer.values_.source.source_.changed(); ``` But there is no update on the Vector layer.

Hi, this seems to be the same problem that I had. You can check my workaround at https://github.com/openlayers/ol3-cesium/issues/344#issuecomment-214098148

> Text defined in the style of items in the vector layer is not correctly rendered. > What do you mean? Do you have an example? Sorry, that was elaborated...