Tagged Questions
1
vote
0answers
67 views
Creating responsive interaction with tiled maps
I think I may have two conflicting aims but...
I need to create responsive Choropleth map very similar to http://leafletjs.com/examples/choropleth.html or
...
1
vote
1answer
405 views
Unproject Radius with Openlayers with CRS:84 Projection
I have made a Openlayers integrated map that lets you draw a circle, On completion of the circle I have told the map to give me , Bounds, Center Long and Lats, and lastly the radius. My problem is ...
2
votes
1answer
533 views
how to get Coodinates after Resizing a feature Openlayers
I'm trying to display the coordinates of a Feature or vector layer after I use the modify radio button to resize my vector, but it does not work, nor on my drag feature. I'm using ...
0
votes
1answer
567 views
How to stop or deactivate draw polygon control after the first polygon has been drawn in Openlayers
I want to only be able to draw one circle on my map and then disable the control. Below is my code, Any suggestions?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
...
0
votes
1answer
875 views
How to change events in the Oncomplete Drag function in Openlayers
below is code that works for Openlayers drag function:
drag = new OpenLayers.Control.DragFeature(polygonLayer, {
autoActivate: true,
onComplete: function() {alert('Are you sure this is the ...
0
votes
2answers
5k views
Openlayers How would i get a hover label over my polygon
make a hover/mouseover label for a polygon in Openlayers?
I made a map with draw, delete and drag polygon function.
Now I need to make a hover mouseover for this.
How to get a hover label for ...