Code Monkey home page Code Monkey logo

Comments (3)

strfx avatar strfx commented on June 11, 2024 2

Hiya, came here to report this too. Did some digging, this is what I got so far:

Leaflet adds the CSS class .leaflet-interactive to the layer that you draw, e.g., a line. While drawing, Geoman applies the class .geoman-draw-cursor to the map. The first rule is more specific than the latter. As the cursor jumps between hovering over the layer and the map, it switches between the cursors.

As a workaround, you can overrule Leaflet while drawing:

.geoman-draw-cursor .leaflet-interactive {
    cursor: unset;
}

/* OR */

.geoman-draw-cursor .leaflet-interactive {
    cursor: crosshair !important;
}

Note that this will change the cursor for every layer on the map while drawing. If you want to keep the cursor if you hover any other layer while drawing (e.g. when snapping), you could apply the .geoman-draw-cursor selectively to the hintline:

map.pm.enableDraw("Polygon", {
  hintlineStyle: {
    className: "geoman-draw-cursor",
  },
});

from leaflet-geoman.

patdahl avatar patdahl commented on June 11, 2024

To add context, I have only tested on:

  • Chrome version: 123.0.6312.86
  • Edge version: 123.0.2420.65

Seems like even if there are browsers where this doesn't happen now, it is ripe for happening down the road.

from leaflet-geoman.

Falke-Design avatar Falke-Design commented on June 11, 2024

Thank you for reporting. We will try to solve this.
crosshair_cursor

from leaflet-geoman.

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.