Dave

Results 263 comments of Dave

taking examples from - https://github.com/visgl/deck.gl/issues/5121 - https://stackoverflow.com/a/33410766/4002530 you need to encode the files. Here's a working example ```r library(RCurl) elevation

you could probably simplify the string encoding with `base64enc::base64encode("file.png")`

Hi @nkennyxfab , sorry for the late reply. Mapdeck does not currently supprot OrthographicView, and I don't think I'll have any time to add it in as a feature if...

Tested again on shiny 1.8.0 and I'm not seeing this error. Please reopen if it persists.

here's a basic example of using a Javascript solution, rather than `googleway::google_places_autocomplete()` ```r library(googleway) library(shiny) library(shinydashboard) set_key(secret::get_secret("GOOGLE")) ui

yeah just replace the `googleway::google_mapOutput` with a call to the javascript libarary ```r shiny::tags$script( src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places" ) ``` or you can hide the map in the UI just be aware that...

A slight modification to correctly use `async defer` ```r ui

see also - https://stackoverflow.com/questions/53347495/r-shiny-map-search-input-box?noredirect=1&lq=1 - https://stackoverflow.com/questions/54848254/shinydashboard-google-places-autocomplete-invalidvalueerror-not-an-instance-o

does this PR address an outstanding issue?

> take a stab at it with a PR if you're open to the idea. yeah go for it