Git Product home page Git Product logo

Comments (3)

mbacou avatar mbacou commented on August 25, 2024

@mennodekker, for the mere mortal, could you provide a quick example on how to use the click event either on the server or client side (or both). I'm migrating from @jcheng5 leaflet to @rstudio leaflet package and having difficulties replicating the onclick and onmouseover events using this version. That'd be really helpful, thanks.

from leaflet.

mennodekker avatar mennodekker commented on August 25, 2024

I did the same thing. The problem I had was that for geojson layers the mapid is not set. The work around until it is fixed is to use undefined.

As snippet of code that works with current implentation:

For server.R (notice the normal map click uses myMap and geosjon undefined)

  Lmap = leaflet() %>% setView(5.266007882805511, 16.5234375, zoom = 1.5)

   observe({
      evt <- input$myMap_click
      if (is.null(evt))
        return()

      isolate({
        # An empty part of the map was clicked.
        # Null out the selected feature.
        values$selectedFeature <- NULL
      })
    })

    observe({
      evt <- input$undefined_geojson_click

      if (is.null(evt))
        return()

      isolate({
        # A GeoJSON feature was clicked. Save its properties
        # to selectedFeature.
        values$selectedFeature <- evt$properties
      })
    })

  Lmap = Lmap %>% addGeoJSON(geo)
  output$myMap <- renderLeaflet(Lmap)

For ui.R

leafletOutput('myMap', width="100%", 380)

from leaflet.

mbacou avatar mbacou commented on August 25, 2024

Perfect, thanks so much!
What is the equivalent method if features are loaded with addPolygons() instead of addGeoJSON()? Would input$myMap_click and input$myMap_mouseover return the polygon layerId?

from leaflet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.