Giter Club home page Giter Club logo

Comments (6)

venkatesh-brightly avatar venkatesh-brightly commented on June 2, 2024 1

I am using 'lit' for creating web component.

Please check this link: https://codesandbox.io/p/sandbox/pedantic-leaf-hf2z7d?file=%2Fsrc%2Findex.js

While debugging, I figured out that in move(e) function, e.target and document.elementFromPoint is actually returning the web component instead of the actual node which is preventing it from dropping.

I fixed it by updating the below code for now in my local:

var li
if (!e.touches) {
  li = e.target
  /**
   *  Get the HTML node within web component on click drag
   */
  if(e.target.shadowRoot){
    li = e.composedPath()[0]
  }
} else {
  li = document.elementFromPoint(e.touches[0].clientX, e.touches[0].clientY);
  /**
   *  Get actual HTML node within web component on touch drag
   */
  while(li.shadowRoot){
    li = li.shadowRoot.elementFromPoint(e.touches[0].clientX, e.touches[0].clientY)
  }
}

This code can be found in file: LayerSwitcher.js:594

from ol-ext.

Viglino avatar Viglino commented on June 2, 2024 1

I hope this might help.

I'll try to fix it asap

from ol-ext.

Viglino avatar Viglino commented on June 2, 2024 1

Just published [email protected]

from ol-ext.

Viglino avatar Viglino commented on June 2, 2024

Do you have an example online to test.
What sort of component are you using ?

from ol-ext.

venkatesh-brightly avatar venkatesh-brightly commented on June 2, 2024

I hope this might help.

from ol-ext.

venkatesh-brightly avatar venkatesh-brightly commented on June 2, 2024

When will these changes published on npm?

from ol-ext.

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.