Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8252993
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T00:43:16+00:00 2026-06-08T00:43:16+00:00

I am writing an application that uses OpenLayers to enable users to drag and

  • 0

I am writing an application that uses OpenLayers to enable users to drag and drop files on to a pre-defined set of features that get sent to a server with AJAX. The files themselves are raw data from geophysics equipment that will be rendered as a raster layer by the server.

I have drag-and-drop working for the map:

var mapelem = $id("map");
mapelem.addEventListener("dragover", FileDragHover, false);
mapelem.addEventListener("dragleave", FileDragHover, false);
mapelem.addEventListener("drop", FileSelectHandler, false);

And I have highlight on hover working with this code:

var sf = new OpenLayers.Control.SelectFeature(boxes, {
    hover: true,
    multiple: false,
    highlightOnly: true
});
map.addControl(sf);
sf.activate();

The rest of the code is mostly just the Boxes Example – Vector.

The problem is that when dragging a file onto the map canvas, the OpenLayers hover selection no longer works, and I would like the feedback it gives the user to ensure they’re dropping the file where they expect it.

I can get the cursor’s position on the canvas:

map.events.register("mousemove", map, function(e) { 
    lonlat = map.getLonLatFromPixel(e.xy);
});

So I may be able to do a point-in-feature test in that function, but it would be nice to be able to use the existing functionality.

Is there some way I can propagate the drag message to my OpenLayers layer?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T00:43:17+00:00Added an answer on June 8, 2026 at 12:43 am

    From the MDN drag and drop documentation [1]: «Note that only drag events are fired; mouse events such as mousemove are not fired during a drag operation.»

    So you won’t be able to register your drag handler to the map div. Maybe you could try to register a drag handler on each feature. Here some half-tested code (and just with the SVG renderer):

    boxes.features.forEach(function(f){
        elem = $(f.geometry.id);
        elem.addEventListener("dragover", FileDragHover, false);
        elem.addEventListener("dragleave", FileDragHover, false);
        elem.addEventListener("drop", FileSelectHandler, false);
    })
    

    Hope that can helps.

    1 – https://developer.mozilla.org/En/DragDrop/Drag_and_Drop

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a little wrapper for an application that uses files as arguments. The
I'm writing an application that uses UIImagePickerController. I'd like to give users choice of
I'm writing an application that uses renaming rules to rename a list of files
I'm writing an application configuration module that uses XML in its files. Consider the
I am writing a C# shell application that uses ImageMagick. I want to get
I'm writing an application that uses TwainDotNet for scanning. Everything works fine, but scanning
I am writing a C# application that uses a long hard-coded string. For maintainability
I am writing a web application that uses a JSP usebean tag in the
I'm writing a WPF application that uses a component, and this component returns a
So I'm writing a Java application that uses Simple to store data as xml

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.