OpenLayers is an open source Javascript web mapping library for creating web map applications.
0
votes
0answers
3 views
Can't get lon-lat from mouseUp event after dragging element to map (openlayers)
Problem encountered while trying to get coords of a point where mouseUp event happens.
Here is an event handler:
$('#someDiv')
.on("mouseup", map, function(event) {
click.trigger(event, map, ...
0
votes
0answers
7 views
Twitter Bootstrap & OpenLayers Shrinking Map by 100px
I'm using Twitter Bootstrap and Open Layers to show a map on a page:
http://tinypic.com/r/2qu826t/5
The map should be 100 pixels to the left and over top of the div id="OpenLayers.Layer.Image_84" ...
0
votes
0answers
2 views
map.getLonLatFromPixel(evt.xy) throwing NULL
I am working on a web-app using jquery mobile and openlayers api.
code:
var lonlat=map.getLonLatFromPixel(evt.xy);
alert(lonlat);
by using this method i am getting latlong values on desktop but on ...
0
votes
1answer
7 views
Openlayers: select a feature programmatically
I am working on a project that uses openlayers to display a WFS layer(GeoJSON format), I have no problem reading the GeoJSON and display features, but I want to select a feature programmatically, for ...
1
vote
2answers
11 views
Openlayers Map is shown only if the CSS contains a syntax error
I'm trying to create a webpage that shows an almost fullscreen map. The map should fill the space between header and footer. This is the code I have so far:
HTML:
<header>
<div ...
0
votes
0answers
20 views
how to display UTFGrid (infobox) on a map using OpenLayers and Wax
I have created a map in MBTiles using TileMill and hosted it on MapBox. Now I am trying to display it on my website adding the infobox using OpenLayers and Wax
Acording with these
...
0
votes
0answers
5 views
OpenLayer Popups for markers imported from google spreadsheet
I'm looking for a way to use framecloud type popup with my current setup. Unfortunately all my attempts have either not worked or will only work on the most recently placed maker.
In the course of ...
0
votes
1answer
8 views
OpenLayers always-offline application?
None of the "openlayers offline" examples I've found seem to have an even remote understanding of what someone asking for an offline solution means. I don't want a browser cache, and I don't want an ...
1
vote
0answers
32 views
How to keep OpenLayers.StyleMap and OpenLayers.SelectFeature from conflicting?
I have an OpenLayers.Layer.Vector layer, something like this:
layer = new OpenLayers.Layer.Vector("zzzzz", {
strategies: [
new OpenLayers.Strategy.Fixed(),
],
// styleMap: new ...
0
votes
0answers
24 views
input text box get NaN value
I want write a sum of values in a textbox. For that I have this two parts of code:
http://pastebin.com/N2jnaQ4x
Conclusion: I get the value 'NaN' in textbox. I have tried many things with ...
0
votes
0answers
14 views
java.lang.NullPointerException with GeoServer, Postgis and openlayer
I am continuing work that another person began based on Geoserver and postgis. On the database level there are many tables and the layers are views based on these tables. That is working great!
Now I ...
-2
votes
0answers
15 views
Adobe SVG viewer 3.03 [closed]
we need to view SVG content (OpenLayers vectors) in our web page in IE8. With this in mind, I downloaded Adobe's SVG viewer version 3.03 but nothing seemed to happen i.e. I was not asked if I wanted ...
0
votes
0answers
5 views
GeoServer, OpenLayers, Jquery Mobile License Requirements
Can I charge a fee for an app built using GeoServer, OpenLayers and Jquery Mobile? I've tried to read their licenses and I believe I can, but I'm no lawyer. The only catch seems that you need to ...
0
votes
1answer
25 views
jquery mobile “taphold” on map
I am creating a web-based app using jquery mobile, based on openlayers API. I am having trouble with firing "taphold" event on map. Can you tell me how can i fire the taphold event over a map. I have ...
0
votes
0answers
5 views
Open Layers : how to edit the popup in mobile-sencha.html
I started to work with the Open Layers library for drawing some maps http://openlayers.org/.
More specifically, I am interested in the mobile-sencha.html example that can be found here :
...