Tagged Questions

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
4answers
5k views

Openstreetmap: embedding map in webpage (like Google Maps)

Is there a way to embed/mashup the OpenStreetMap in your page (like the way Google Maps API works)? I need to show a map inside my page with some markers and allow dragging/zooming around, maybe ...
4
votes
1answer
429 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 ...
3
votes
1answer
114 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
1answer
163 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 ...
2
votes
2answers
1k views

Display WMS Layer Based on Zoom Level

I've been at this all day long and honestly I'm out of ideas. I have some WMS layers that I would like to display/not display depending on the current zoom level. Yes, I have went through the API ...
1
vote
1answer
40 views

Customizing markers in OpenStreetMap

I'm working with OpenStreetMap and have successfully added markers to the map that, when clicked, show a popup window. I would like, if possible, to customize markers not only by changing the image, ...
1
vote
1answer
62 views

Is there a way to change the color of certain features in an openstreetmap using OpenLayers?

I'm using OpenLayers to display an openstreetmap. Is there a way to edit certain features on the map? For example changing the color of the water, removing the border between countries etc. If it can ...
1
vote
1answer
106 views

style: color and strokewidth in Openlayers?

I tried some ways but cant seem to find the proper one, How can I ad a style to this layer: var line_1 = new OpenLayers.Layer.Vector("Line nr 1", { projection: ...
1
vote
2answers
195 views

using openstreet maps with marker and polylines with javascript

Guys i am complete newbie in using openstreetmaps .i know how to use google and bing maps api. my requirement is to create a sample map with just some markers to locate and draw poly lines between ...
1
vote
4answers
2k views

Change Projection in OpenLayers Map

I want to set "EPSG:4326" as the projection of an OpenLayers map, but when I try it, I always get "EPSG:900913". function init() { var options = { projection: new ...
1
vote
3answers
921 views

Open Street Map Marker Manager

I need kind of Marker Manager for OpenStreetMap like in google maps. Do somebody know anything about it?
0
votes
0answers
18 views

YOURS - YourNavigation with routing

how can I use YOURS for display on right of my web page the directions and on centre-left the map with ONLY the route (not http://www.yournavigation.org/ page) Is it possible ? I need any Javascript ...
0
votes
1answer
84 views

Targeting and/or modifying a KML region in OpenLayers

I've built several Javascript applications for map charts using google maps, and I was hoping to recreate these in OpenLayers. I'm finding the documentation on their site pretty confusing and tough ...
0
votes
1answer
82 views

Openlayers OSM always set on (long/lat) (0/0)

this is my code map = new OpenLayers.Map("map"); // I tried several projections here, all lead to the same result var proj = new OpenLayers.Projection("WGS84"); var point = new ...
0
votes
1answer
84 views

OpenStreetMap point not showing on map with open layers

var map; var vectors; var point; var drag; Any long and Lat can be used function mapCreate(lon,lat){ map = new OpenLayers.Map("map1"); var osm = new OpenLayers.Layer.OSM(); ...
0
votes
1answer
96 views

can't draw a polyline on google maps v3, but can draw the points of it as markers (I am using OpenStreetMap layer)

the following code is used to draw a polyline on Google Maps using V3 API, but sometimes is draws the polyline and most of times doesn't despite there are point (as I can show the points on the map as ...
0
votes
1answer
63 views

Showing a marker on an embedded Open Street Map based on address data

At the moment I serve pages showing a google map with a marker using an address retrieved from my database. I currently use a fairly simple piece of javascript code to add that marker by geocoding. My ...
0
votes
1answer
122 views

Accessing objects returned by java script running in a webbrowser control from C#

I would like to know how i can access properties of an object returned by a javascript function running inside a webbrowser control from within C#. Here is the full context: I'd like to create a C# ...
0
votes
1answer
99 views

where to add visibility: false in openlayers code?

I wanted to know where can I add visibility: false in the code below: Just like in second code ? var line_10 = new OpenLayers.Layer.GML("Line nr-10", "lines/line_10.kml", { format: ...
0
votes
0answers
232 views

OpenLayers zoomToExtent does not zoom correctly

I have an openlayers map with a couple of POI, and I want to zoom so these all fit the map, which I'm doing with the following code: var bbox = new OpenLayers.Bounds( <?php echo ...
0
votes
1answer
77 views

Offline Maping Solution

I am in a need of a solution for mobile devices, which will allow to display offline map with some 400 POIS of a given city. I have digged a bit and am stacked with the idea. I will develop my ...
0
votes
2answers
195 views

OpenLayers minimal zoom smaller than bounding box

I've got a problem with osm and openlayers. first of all, my map object var wgs84 = new OpenLayers.Projection("EPSG:4326"); var map = new OpenLayers.Map ('map', { projection: new ...
0
votes
1answer
373 views

Openlayers - Projection issues when getting latitude/longitude from a point

I'm trying to get the latitude/longitude from a draggable marker with Openlayers and OSM but I can't find the good settings for the projection conversion, what I am doing wrong ? Here is the code: ...