Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 R 中开发一个闪亮的应用程序,其中涉及使用传单包生成的地图。我想从地图中删除属性,或者至少减少可见文本。
我尝试按照本主题attribution中的说明修改该值,将其设置为、或,但没有一个选项对我有用。NAFALSE''
attribution
NA
FALSE
''
我知道在 Java 中使用传单时可以选择删除属性(请参见此处)。您知道是否可以在 R 代码中导入此功能,或者是否存在其他解决方案来解决此问题?
我自己找到了答案。
attributionControl将选项设置为 就足够FALSE了leafletOptions。
attributionControl
leafletOptions
map<- leaflet( options = leafletOptions( attributionControl=FALSE))