Giter Site home page Giter Site logo

Edit Mode about leaflet-geoman HOT 2 CLOSED

AbdulrahmanM0 avatar AbdulrahmanM0 commented on June 16, 2024
Edit Mode

from leaflet-geoman.

Comments (2)

AbdulrahmanM0 avatar AbdulrahmanM0 commented on June 16, 2024

import React, { useEffect } from 'react';
import L from 'leaflet';
import 'leaflet/dist/leaflet.css';
import '@geoman-io/leaflet-geoman-free/dist/leaflet-geoman.css';
import '@geoman-io/leaflet-geoman-free';

const LeafletMapComponent = () => {
useEffect(() => {
// Create a Leaflet map
const map = L.map('map').setView([24.774265, 46.738586], 6);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);

// Enable drawing and editing with leaflet-geoman
map.pm.addControls({
  position: 'topleft',
  allowSelfIntersectionEdit: true,
  syncLayersOnDrag: true,
  drawCircle: false,
  rotateMode: false,
  showControls: ['all'],
  editMode: true,
});

// Set up a flag to check if an edit has occurred
let isEditOccurred = false;

// Listen for the pm:edit event to capture edits
map.on('pm:edit', (event) => {
  console.log('Edited Layer GeoJSON:', event);

});

// Listen for the pm:create event to capture creations
map.on('pm:create', (event) => {
  console.log('Drawn Data:', event);
});

// Check for edits after a timeout
const checkEdits = () => {
  if (isEditOccurred) {
    // Get all layers on the map (including edited ones)
    const allLayers = map.pm.getGeomanDrawLayers();

    // Log GeoJSON data of edited layers
    const editedLayersGeoJSON = allLayers.map(layer => layer.toGeoJSON());
    console.log('Edited Layers GeoJSON:', editedLayersGeoJSON);
  }
};

// Check for edits after a timeout of 1 second
setTimeout(checkEdits, 1000);

// Cleanup on component unmount
return () => {
  map.remove();
};

}, []);

return <div id="map" style={{ width: '600px', height: '600px' }} />;
};

export default LeafletMapComponent;

from leaflet-geoman.

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

You need to add the event listener to the layer instead of to the map:

layer.on("pm:edit", (e) => {
  console.log(e);
});

grafik

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.