I have added some overlays in openlayer 3.Is it possible that if i click on ctrl+mouse left click and drag mouse to select a rectangular area on map and i need to get the overlays listed in that particular area?
Openlayer 3 rectangular selection
1.2k Views Asked by Kiran k g At
1
There are 1 best solutions below
Related Questions in OVERLAY
- OpenLayer 3: Map pointer up event can not be triggered when the map created on overlay
- UI Overlay Over a Foreign Application
- jQuery mobile - generating html dynamically not working with iframe
- Javafx concurrency and gui-update
- How to draw on an image in openGL?
- position overlaying div within another div
- Overlay image in ts file
- (ionic) How can I make side menu overlaying contact?
- Is it possible to add a text overlay to videos?
- Div Overlay over an existing .jpg Image
- How to work in Atom Editor's view directly
- Overlay update button on top of listview?
- Developing an in-game Java overlay
- How to make a button to overlay all objects?
- How to accomplish 3 horizontal line menu in fxml
Related Questions in OPENLAYERS-3
- OpenLayer 3: Map pointer up event can not be triggered when the map created on overlay
- How can I fit "ol.Map" to "Ext.panel.Panel"?
- How to easily create a heatmap layer from a pre-existing vector layer of points in OpenLayers 3?
- OpenLayers v3.5.0 map, loading features from a GeoJSON using bbox strategy
- Extent bounds not respected on zoom
- De-/activate getfeature-request via button
- Openlayers 3 using debugger inside pointermove handler crashes chrome
- Openlayers 3 : Issue in Changing Extents of the Map
- ESRI tile service not loading correctly in web maps
- Proxy for WMS layers
- Does ol3-cesium accept DEM files?
- Customize style of a vector layer ol3
- OpenLayers3 : Draggable OverviewMapControl
- better way to get ol.Feature.getGeometry().j
- "make test" fails because of syntax error
Related Questions in DRAWRECTANGLE
- Why are Graphics2D rectangles not displayed?
- Openlayer 3 rectangular selection
- C# drawing rectangle in a specific color channel
- Draw only corner of a rectangle
- Set Size of TextFieldRect.Width
- pygame isn't redrawing rectangles after they've disappeared
- LWJGL Rectangle gets wider further down
- Trying to draw a circle in Java using variable in parameters
- Is there any easy way to create an angled rectangle in php?
- Ball to brick collision in c#
- Direct2d + winapi Rectangle not completly filled
- Drawing a rectangle in vb.net
- How do I draw a rounded rectangle without filling it (in MFC)?
- How to create a rectangle pattern using Python : What's wrong with my code
- draw_set_alpha seems to not work with draw_rectangle
Related Questions in OL3-GOOGLE-MAPS
- Transferring the Google Maps API V3 "styles" to OpenLayers using ol3gm
- Mouse rightclick on Openlayer 3
- Openlayer 3 rectangular selection
- Using ol3-google-maps with different projections
- Using ol3-google-maps with Openlayers 4
- Why my pointer and blue dot are not together?
- Add many imageStatic Layers into map make browser's usage memory increase and browser slow down even crash
- Too many requests on ImageWMS layer
- ol.Map not a function to Safari and map not displaying in IE11
- zIndex issue on regular shape for ol3-google-maps
- Get a handle on the actual google map object
- Openlayers 3 forEachLayerAtPixel get only layer
- updateParams not working in ol3gm
- Open Layer ( Geoserver ) Spatial Search not working
- Loading MULTIPOLYGON in openlayer 3 with OL3-Google-Maps
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, it is possible with the DragBox element.
This way you declare the element:
And you can add it as interaction to your already existing map:
If you want to add some behavior, it is possible to call the events boxstart and boxend:
You will find more information in the OpenLayers 3 API: http://openlayers.org/en/latest/apidoc/ol.interaction.DragBox.html
You can also take a look at the Box Selection example here: https://openlayers.org/en/latest/examples/box-selection.html