Code Monkey home page Code Monkey logo

Comments (8)

Falke-Design avatar Falke-Design commented on June 27, 2024 21

The fix would be:

 // get state vars and interface ready for measure
  _startMeasure: function() {
    this._locked = true;
    this._measureVertexes = L.featureGroup().addTo(this._layer);
    this._captureMarker = L.marker(this._map.getCenter(), {
      clickable: true,
      zIndexOffset: this.options.captureZIndex,
      opacity: 0,
      autoPanOnFocus : false
    }).addTo(this._layer);

Workaround:

L.Control.Measure.include({
	// set icon on the capture marker
	_setCaptureMarkerIcon: function () {
		// disable autopan
		this._captureMarker.options.autoPanOnFocus = false;

		// default function
		this._captureMarker.setIcon(
			L.divIcon({
				iconSize: this._map.getSize().multiplyBy(2)
			})
		);
	},
});

var measure = L.control.measure({}).addTo(map);

from leaflet-measure.

agishk avatar agishk commented on June 27, 2024

@Nazanne Did you find some solution on this? As the measure was perfectly working fine with lower version but not with 1.8.0.

from leaflet-measure.

Nazanne avatar Nazanne commented on June 27, 2024

@agishk I did not find a direct solution. At this point I'm using mapbox.js instead of Leaflet.

from leaflet-measure.

ksalamy avatar ksalamy commented on June 27, 2024

This did it! Thanks Falke-Design!

from leaflet-measure.

karasma3 avatar karasma3 commented on June 27, 2024

i am experiencing the same behaviour but with the leaflet version 1.7.1 and leaflet-measure 3.1.0.
@Falke-Design thanks for the workaround, hope this will be fixed in the newer version

from leaflet-measure.

karasma3 avatar karasma3 commented on June 27, 2024

@bre7 will this be merged soon?

from leaflet-measure.

bre7 avatar bre7 commented on June 27, 2024

Last commit on Apr 8, 2018 so my guess is...no.
It's just a fork with @Falke-Design's fix.

from leaflet-measure.

abewartech avatar abewartech commented on June 27, 2024

export const MeasureControl = createControlComponent((props) => new Control.Measure(props));

L.Control.Measure.include({ _setCaptureMarkerIcon: function () { this._captureMarker.options.autoPanOnFocus = false; this._captureMarker.setIcon( L.divIcon({ iconSize: this._map.getSize().multiplyBy(2), }), ); }, });

from leaflet-measure.

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.