Tagged Questions

OpenLayers is an open source Javascript web mapping library for creating web map applications.

learn more… | top users | synonyms

74
votes
10answers
14k views

OpenLayers vs Google Maps?

I have used Google Maps a couple of times, but what wondering about OpenLayers. Before starting any kind of coding, here are a couple of questions that come to my mind, Why would I use OpenLayers ...
9
votes
2answers
452 views

Upgrade to Google Maps version 3, or go to OpenLayers?

I manage the development of some academic web mapping software for authoring collections of geographic data. It's a fairly simple interface for creating historic maps. The project is based on Google ...
8
votes
3answers
8k views

Good examples of MapServer / OpenLayers

I want to convince some clients to use MapServer and OpenLayers. Please can anyone suggest attractive websites to show off the possiblities! The clients will be impressed by: A density map ...
8
votes
4answers
9k views

How to display data using openlayers with OpenStreetMap in geodjango?

I've got geodjango running using openlayers and OpenStreetMaps with the admin app. Now I want to write some views to display the data. Basically, I just want to add a list of points (seen in the ...
7
votes
3answers
2k views

Min/max zoom level in OpenLayers

I'm using OpenLayers to display a map in a web page. I am using tiles from CloudMade, but the same issues occur with the Mapnik tiles from OpenStreetMap. I'm trying to restrict the map so that the ...
6
votes
2answers
236 views

OpenLayers, and GeoJSON, not multiply marker on same coordinates

My code is showing markers from GeoJSON, when I'm haved zoomed into zoom-level 10,it load the GeoJSON-file, but how do I avoid to reput out the same markers? Is there a way to check if there already ...
6
votes
5answers
577 views

performance difference between openlayers, decarta and google maps

We have recently been transitioning our company mapping system from Google map, first to deCarta and then to OpenLayers. We have found that OpenLayers and deCarta are remarkably slower than Google ...
6
votes
3answers
3k views

Javascript “unspecified error” in Open Layers

I am getting this error when the map loads. The error is in the original, unmodified OpenLayers.js file on this line: return!!(document.namespaces); I have tried rewriting it to: return ...
5
votes
1answer
2k views

Forcing an OpenLayers Markers layer to draw on top, and having selectable layers beneath

I have an OpenLayers map with a raster base layer, a vector layer and a markers layer in that order. They display fine, in the correct order with the markers on top of the vectors, great. But when I ...
5
votes
1answer
4k views

OpenLayers Google Maps Projection Problem w/ KML

This is my first time on stackoverflow and working with Openlayers & Google Maps. I've been browsing different forums & sites, including OpenLayers.org, to solve my issue. I've done searches ...
4
votes
1answer
61 views

Draw Camera Range with Postgis

i am working on some camera data. I have some points which consist of azimuth, angle, distance, and of course coordinate field attributes. In postgresql postgis I want to draw shapes like this with ...
4
votes
1answer
564 views

Mercator projection world map with Geoserver and Openlayers

I'm trying to render a world map shapefile on my Geoserver with a Mercator projection. I've tried declaring the SRS on Geoserver and defining EPSG projections of 3785 or 900913 in Openlayers with no ...
4
votes
1answer
428 views

How do I activate a feature + popup when clicking outside of a map in Openlayers?

I'm re-parsing the KML that's already been loaded onto the map similar to the example here: http://openlayers.org/dev/examples/sundials.html and turning it into a clickable list that will center the ...
4
votes
2answers
5k views

Drawing a path with a line in OpenLayers using JavaScript

I have seen the examples presented here of how to draw a line but the examples only show how to do it with the mouse, by clicking. What I want to do is draw the line manually using JavaScript given a ...
3
votes
1answer
61 views

OpenLayers script available in CDN?

Is the OpenLayers Js script available in a CDN somewhere - in a minified version? I don't want to load it from their website, that would be to slow and not nice.
3
votes
0answers
62 views

How do I abort outstanding map tile request with OpenLayers when the zoom changes?

I have an OpenLayers map with a TMS layer. For each zoom change, my map makes about 56 requests for map tiles (depending on the map/screen size). If the user rapidly zooms in or out, all these map ...
3
votes
1answer
76 views

Geocoding without Google API?

I cant find a way to convert an adress to a long/lat coordinate without using google geocoding API. Im working with Open Layers and Open Street Map and have to avoid google api because of the 2.500 ...
3
votes
0answers
58 views

How to draw horizontal lines in openLayers?

I am using openlayers and able to draw lines using DrawFeature and OpenLayers.Handler.Path. Now I need to provide an option to be able to draw horizontal/vertical lines. Which means when the user ...
3
votes
1answer
107 views

how to add 2+ layers in a group?

How can I add two or more layers in a group so that I can see them in layerswitcher categorised and can select or unselect all !? Here is the code I have: var line_1 = new ...
3
votes
2answers
117 views

Algorithm for reducing GPS track data to discard redundant data?

We're building a GIS interface to display GPS track data, e.g. imagine the raw data set from a guy wandering around a neighborhood on a bike for an hour. A set of data like this with perhaps a new ...
3
votes
1answer
65 views

How to disable google “bird's eye” view in OpenLayers?

I'm using Openlayers and "google satellite" as base layer. From a certain zoom level, the image switches to the oblique view, named "bird's eye" view and proposed by google. I'd like to know how to ...
3
votes
1answer
161 views

Adding popup info in openlayers?

Im using this code to load a kml file over the map which in this case Im using OpenStreetMap. I want to know how can I add a popup when clicking on the kml(road) so that it shows some information ...
3
votes
2answers
664 views

Openlayers, nice marker clustering

Do you know how to have a nice clustering in openlayers such as this google example ?
3
votes
2answers
415 views

how to hide vector features in openlayers

I have written some code to hide specific markers in our maps based on checkboxes outside of the map itself. However, these markers also have vector features too (really on separate layers) but I want ...
3
votes
1answer
1k views

Openlayers: Vector Features instead of Markers

I want to place a symbol o a Map. E.g. So far I have used OpenLayers with OpenLayers.Layer.Markers. The code looks like this: map = new OpenLayers.Map('map'); layer = new ...
3
votes
3answers
122 views

Finding the outer borders from the list of random coordinates

I've a huge list (60 000+) of coordinates and I haven't found a way for recognizing the outer borders. The list of coordinates are quite random, but they're defining some really specific area. I ...
3
votes
3answers
824 views

How to transform a distance from degrees to metres?

I'm using OpenLayers with an ordinary mercator map and I'm trying to sample a bounding box by finding a grid of points in latlong. The bbox is expressed in latlon, e.g. ...
3
votes
3answers
2k views

Display Map like OpenStreetMap

I like the way OpenStreetMap display its map. It almost looks like Google Map. I have already installed GeoServer and PostGis on my notebook. I also got this cloudmade osm file for my country, ...
3
votes
3answers
2k views

Openlayers - LayerRedraw() / Feature rotation / Linestring coords

TLDR: I have an Openlayers map with a layer called 'track' I want to remove track and add track back in. Or figure out how to plot a triangle based off one set of coords & a heading(see below). ...
3
votes
1answer
2k views

Trouble with OpenLayers Styles

So, tired of always seeing the bright orange default regular polygons, I'm trying to learn to style OpenLayers. I've had some success with: var layer_style = ...
3
votes
4answers
1k views

Interactive World Map, highlight countries on mouseover

I need to create an interactive world map on the front page of a site, the view portal will be about 650x200 pixels. The interactivity would include the following, mouse-over a country would highlight ...
3
votes
1answer
342 views

How can I use a Mapnik-Backgroundlayer with lat-lon layers in one map with OpenLayers?

I have an application with a map-client using OpenLayers. I want to use Mapnik-data as background-layer, as provided with the class OpenLayers.Layer.OSM.Mapnik. For that I have to switch to the ...
3
votes
4answers
956 views

Which is the best ESRI ArcGIS component library to use with GWT?

We are currently designing a GIS intranet application using GWT and ESRI ArcGIS. We are looking at 2 client side Javascript libraries: The ESRI Javascript API Open Layers The library will have to ...
2
votes
3answers
51 views

openlayers - wms - map not loading

I've created a simple site with a map where I'm connecting to a wms-server. The problem is now, that the map isn't shown, just a view small pictures. Here is the site i've created: ...
2
votes
1answer
26 views

Dojo data-dojo-props style overwritten

I'm using a dojo ContentPane to render an openlayers map. When the DOM is ready and the map is inserted the sytle of the dijit is overwritten. I've tried specifiying the height and width in a CSS by ...
2
votes
1answer
26 views

How can I create an openlayers layer which includes the borders for the city?

First of all, I am a newbie in the field of GIS and openlayers so please bear with me. I am using an openstreetmap and would like to show the borders of the governorates on the map while adding a ...
2
votes
1answer
94 views

OpenLayers get Lat, Lon from polygon vertices

I am trying to get the boundary box using a square polygon in openlayers. I need to get the North, South, West, and East values from the box. Right now I am using : var topleft = ...
2
votes
1answer
283 views

Openlayers zoom in on cluster

Is it possible to zoom in on cluster on click? I also don't know how to disable cluster popup. I read this question , but still have no idea how to do it. Here is the code: <html> <script ...
2
votes
1answer
679 views

How to use OpenStreetMap/OpenLayers?

I am searching for an example how to use OpenStreetMap with PhoneGap and Android. I found only old examples at the web, f.e. http://mab.edina.ac.uk/geomobile-test/osm.html, but it didn't work with the ...
2
votes
1answer
77 views

What is Openlayers.ProxyHost?

Actually am a newbie on this field.I didn't understand about Openlayers.ProxyHost.And i also don't know about Cross server thing??
2
votes
1answer
131 views

write png quickly

Summary I want to write a .png file as quickly as possible, without a concern for compression. That is, I don't care much about the file size, but I do care that the write happens as quickly as ...
2
votes
1answer
79 views

Which is the best way to work with PostGIS and OpenLayers?

I have a postgresql db table with a City table that has a geography field with the city coordinates. I have made a php page that loops through these records, converts geo field in latit/longit and ...
2
votes
1answer
93 views

Openlayers: Marker on different vector layers

I have an OpenLayers map with two vector layers. Both of them contain marker. With help of the following link, I managed to get a select-handler on both layers. ...
2
votes
2answers
311 views

OpenLayers Refresh Strategy Problems

I'm developing an application, part of which uses OpenLayers (calling a Geoserver-served WMS) displaying some frequently updated data (a vessel track - or more specifically, a series of points). I ...
2
votes
1answer
97 views

Markers vs. Vector points - performance impact

I am starting a new Openlayers project and trying with few examples. If I have to load say 500 objects, is it better to load them as Markers or Vector points? These are going to be static elements on ...
2
votes
0answers
376 views

Sencha Touch, OpenLayers, GeoServer: Wrong encoding on devices using Android 2.2

I have created a small test page using Sencha Touch, OpenLayers and I am recieving WMS/WFS data from a GeoServer. I have set the encoding on my HTML page to UTF-8: <meta http-equiv="Content-Type" ...
2
votes
1answer
76 views

How to zoom with mouse in OpenLayers so that the mouse points to the same place before and after zooming (a la Google Maps)?

I'm having a tough time changing the zoom method of my OpenLayers map. If you were to go to Google Maps right now and double click on London on the map to zoom, the mouse cursor is pointing at London ...
2
votes
1answer
134 views

Openlayers polygon doesn't 'finish' drawing

I am trying to draw a freeform polygon in openlayers using the following code: drawPolygon = new OpenLayers.Control.DrawFeature(layer, OpenLayers.Handler.Polygon, {eventListeners:{"featureadded": ...
2
votes
1answer
122 views

getting the user click inputs in openlayers and store in postgis

i am developing a web based application for showing the public vehicle routes using GeoServer, PostGIS and OpenLayers. what i need to do is let the user define a route by clicking on the main bus stop ...
2
votes
1answer
387 views

Make marker dragable and clickable

I have a vector-layer for diplaying markers as features on my map, but now mather, what I do, they are eighter dragable or clickable. What can I do to get both? /*** Init Drag Marker */ var ...

1 2 3 4 5 10