Skip to main content
deleted 20 characters in body
Source Link
kraggle
  • 331
  • 4
  • 10

Why doesn't R leaflet recognize mousemove? We should be able to:

observeEvent(input$map_mousemove, {

    coords <- unlist(input$map_mousemove)
})

And extract longitude and latitude accordingly. This observer works with click event anyhow, which is also part of the Map Interactive Layer mouse eventsMap Interaction events

Why doesn't R leaflet recognize mousemove? We should be able to:

observeEvent(input$map_mousemove, {

    coords <- unlist(input$map_mousemove)
})

And extract longitude and latitude accordingly. This observer works with click event anyhow, which is also part of the Map Interactive Layer mouse events

Why doesn't R leaflet recognize mousemove? We should be able to:

observeEvent(input$map_mousemove, {

    coords <- unlist(input$map_mousemove)
})

And extract longitude and latitude accordingly. This observer works with click event anyhow, which is also part of the Map Interaction events

Source Link
kraggle
  • 331
  • 4
  • 10

Why doesn't R leaflet recognize mousemove? We should be able to:

observeEvent(input$map_mousemove, {

    coords <- unlist(input$map_mousemove)
})

And extract longitude and latitude accordingly. This observer works with click event anyhow, which is also part of the Map Interactive Layer mouse events