active questions tagged openlayers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:45:34Zhttp://stackoverflow.com/feeds/tag/openlayershttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812273/adding-a-map-overlay-on-a-uk-ordnance-survey-openspace-map1adding a map overlay on a UK Ordnance Survey OpenSpace mapAP2572009-11-28T11:12:12Z2009-11-29T15:40:51Z
<p>Does anyone have a code example of how to add an image overlay to an Ordnance Survey OpenSpace map?</p>
<p><a href="http://openspace.ordnancesurvey.co.uk/openspace/OpenSpaceAPIDocs1.0.0/files/OpenSpace/Layer/MapOverlay-js.html#setHTML" rel="nofollow">The documentation</a> is not exactly comprehensive :)</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1783081/openlayers-mapnik-tilecache-configuration-problem0Openlayers + Mapnik + Tilecache configuration problemNakh2009-11-23T13:18:11Z2009-11-27T04:54:51Z
<p>Hi All,</p>
<p>I am trying to setup Mapnik + tilecache but can't see any tiles in the browser when I set bbox parameters in both Tilecache.cfg and Openlayers but when I don't specify the bbox everything works fine and I can see actual map tiles.</p>
<p>I was wondering if anyone can point out the problem in the code. I think I have tried everything ( in my limited capability) and not really understanding why would it not work. By the way all map layers ( for mapnik styling) are sourced from a PostGIS database and have different projections and transformed on the fly by Mapnik.</p>
<p>OpenLayers code:</p>
<pre><code> var map, layer;
function init(){
var map, layer;
var options = {
numZoomLevels:20,
maxResolution: 360/512,
projection: "EPSG:4326",
maxExtent: new OpenLayers.Bounds(-2.0,50.0,2.0,54.0)
//not working when uncommented
};
map = new OpenLayers.Map( 'map', options);
layer = new OpenLayers.Layer.WMS( "Map24","tilecache.py?",
{
layers:'mapnik24',
format: 'image/png',
srs: 'EPSG:4326'
} );
map.addLayer(layer);
map.addControl( new OpenLayers.Control.PanZoomBar());
map.addControl( new OpenLayers.Control.MousePosition());
map.addControl( new OpenLayers.Control.LayerSwitcher());
map.addControl( new OpenLayers.Control.Permalink("permalink"));
if (!map.getCenter()) map.zoomToMaxExtent();
}
</code></pre>
<p>Tilecache.cfg:</p>
<p>[mapnik24]</p>
<p>type=Mapnik</p>
<p>mapfile=/somedit/map24.xml</p>
<p>bbox=-2.0,50.0,2.0,54.0</p>
<p>levels=20</p>
<p>srs=EPSG:4326</p>
<p>projection=+proj=latlong +datum=WGS84</p>
<p>--
Thanks,
A</p>
http://stackoverflow.com/questions/1799703/form-in-the-viewer-openlayers0form in the viewer openlayersricardo2009-11-25T20:21:43Z2009-11-25T20:21:43Z
<p>hello all as I create a form within the openlayers viewer, deployed in the same way that the switch maps.</p>
<p>thanks for any response</p>
http://stackoverflow.com/questions/1658225/customize-openlayers-control0Customize OpenLayers Controlkonzepz2009-11-01T20:25:55Z2009-11-19T03:42:06Z
<p>How can I easily customize OpenLayers map controls? Or at least, how can I minimize the controls' height?</p>
<p>Thank you.</p>
<p>PS. Is there any CSS override?</p>
http://stackoverflow.com/questions/1671293/openlayers-google-maps-projection-problem-w-kml3OpenLayers Google Maps Projection Problem w/ KMLTiffany2009-11-04T01:55:46Z2009-11-09T19:24:06Z
<p>Hi. This is my first time on stackoverflow and working with Openlayers & Google Maps. </p>
<p>I've been browsing different forums & sites, including OpenLayers.org, to solve my issue. I've done searches on a combination of the following: openlayers, google map projections, and spherical mercator... but I have not found a solution. </p>
<p>Problem: The KML data from a web service call (func setDataSource) is shifting as I zoom in and out of the map. My guess is that the projections in my code are wrong or perhaps wrongly placed. I don't have any background on map projections so it is difficult to digest mapping terminology online :-(. Can someone help? </p>
<pre><code> //start here
var options = {
projection: new OpenLayers.Projection("EPSG:900913"),
displayProjection: new OpenLayers.Projection("EPSG:4326"),
units: "m",
numZoomLevels: 18,
maxResolution: 156543.0339,
maxExtent: new OpenLayers.Bounds(-20037508, -20037508,
20037508, 20037508)};
//*map = new OpenLayers.Map('map');
map = new OpenLayers.Map('map', options);
var gphy = new OpenLayers.Layer.Google(
"Google Street",
{'sphericalMercator':true});
// Add the background images via WMS
var bglayer = new OpenLayers.Layer.WMS( "OpenLayers WMS",
"http://labs.metacarta.com/wms/vmap0", {layers: 'basic'}, {'reproject': true});
//map.addLayer(bglayer);
map.addLayers([gphy, bglayer]);
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.zoomToMaxExtent(); //* Zoom all the way out, this command also initalizes the map
OpenLayers.Console.log("initialized");
}
function setDataSource() {
OpenLayers.Console.log("Setting data source to " + OpenLayers.Util.getElement('loc').value);
if (layer != undefined) {map.removeLayer(layer)};
if (selectControl != undefined) {map.removeControl(selectControl)};
// Encode the destination url as a parameter string.
var params = OpenLayers.Util.getParameterString({url:OpenLayers.Util.getElement('loc').value})
// Make the http request to the transformer, with the destination url as a parameter.
layer = new OpenLayers.Layer.GML("KML", transformerURL + params,
{
format: OpenLayers.Format.KML,
formatOptions: {
extractStyles: true,
extractAttributes: true,
maxDepth: 2,
//projection: new OpenLayers.Projection("EPSG:4326"),
}
});
map.addLayer(layer);
</code></pre>
<p>Thank you!!!</p>
http://stackoverflow.com/questions/1675521/introductory-google-maps0introductory google maps jkgg2009-11-04T17:48:22Z2009-11-08T04:56:30Z
<p>hi i wanted to display a us state on google map with borders drawn,</p>
<p>when the user opens up a page i wanted to show in the center that state...with borders drawn.</p>
<p>additionally i wanted to put a button on that page so that user clicks it and draws a rectangle on the state, the system will just have to popup the latitude and longitude of the selected area, and area ...</p>
<p>can you anyone guide me through the steps? or is there any good reference that i could follow. thanks in advance! </p>
<p>as an example of what i mean
<a href="http://opentopo.sdsc.edu/gridsphere/gridsphere?gs%5Faction=lidarNSAF&cid=geonlidarframeportlet" rel="nofollow">http://opentopo.sdsc.edu/gridsphere/gridsphere?gs%5Faction=lidarNSAF&cid=geonlidarframeportlet</a></p>
http://stackoverflow.com/questions/1153472/how-can-i-skip-the-loading-of-the-tiles-in-openlayers0How can I skip the loading of the tiles in OpenLayers?stoimen2009-07-20T13:08:29Z2009-11-04T00:30:43Z
<p>Actually I need only the full functionality of the map but with no tiles and no requests to the server for them. Can I somehow skip them on the initial load? Is there any default parameter I can set? If not I'll make the patch myself but I'm not sure it's not done yet.</p>
http://stackoverflow.com/questions/772684/how-can-i-mix-layers-with-different-coordinate-system-in-openlayers1How can I mix layers with different coordinate system in OpenLayers?Mnementh2009-04-21T13:50:50Z2009-10-30T14:00:03Z
<p>I'm using an OpenLayers-map and I want to use in it different mapservers, that use different coordinate systems. Can OpenLayers integrate it in the same map and automatically converts coordinate-systems?</p>
http://stackoverflow.com/questions/934546/there-is-a-way-to-use-openlayers-on-flex0There is a way to use OpenLayers on Flex?Bittencourt2009-06-01T12:02:22Z2009-10-20T03:27:48Z
<p>is There a way to use OpenLayers on Flex?
By now I've found Open-Scales project, but it is in development (not fully functional).</p>
http://stackoverflow.com/questions/1237187/openlayers-vs-google-maps9OpenLayers vs Google Maps ?Pascal MARTIN2009-08-06T06:01:43Z2009-09-26T17:44:55Z
<p>Hi,</p>
<p>I have used Google Maps a couple of times, but what wondering about <a href="http://openlayers.org/" rel="nofollow">OpenLayers</a>...
<br>Before starting any kind of coding, here are a couple of questions that come to my mind, and you might help me about :</p>
<ul>
<li>Why would I use OpenLayers instead of Google Maps ?
<ul>
<li>Except for it's OSS licence, anyway</li>
<li>Did you encounter any situation in which you'd recommend absolutly not using OpenLayers ?</li>
<li>I did a <a href="http://stackoverflow.com/search?q=openlayers">search about "OpenLayers" on SO</a> ; there are not many answers ; does it mean this solution is not used much ? Could it be a problem for long-term viability of the project ?</li>
</ul></li>
<li>For those of you who have already used OpenLayers : are there any common pitfalls / problems I may encounter ?
<ul>
<li>What about using a JS Framework with it ? I've seen it's using prototype, and I know prototype, so that's be OK... But what about using something else like Mootools ? <em>(Which is not compatible with prototype, btw)</em></li>
<li>Are there any kind of speed/performance related problems ? I need my application to be responsive, and can't wait hours to get a map displayed...</li>
</ul></li>
<li>Are there maps available for many places, or are there lots of those missing ?
<ul>
<li>ie, I'm in France, and need my application to work at least for big cities... Will that be OK ?</li>
<li>if not, is it easy to find layers/visualisations for OpenLayers and integrate them ?</li>
</ul></li>
<li>Is there any kind of API to display roads ?
<ul>
<li>For instance, to show roads that are one-way only</li>
<li>If yes, how can I do that ? Do I have to have some kind of file containing those roads informations, and, then, display them on the map by myself ?</li>
</ul></li>
<li>Do you know any good tutorial to OpenLayers ?</li>
</ul>
<p>Thanks in advance for your help !</p>
<p><em>I have not tried it yet, those are just out of the blue question... So sorry in advance if some are stupid ; I'm really a big ignorant, right now, when it comes to OpenLayers :-(</em>
<br><em>And, if you have any recommandation, don't hesitate : I'm always interested !</em></p>
http://stackoverflow.com/questions/1297285/which-is-the-best-esri-arcgis-component-library-to-use-with-gwt3Which is the best ESRI ArcGIS component library to use with GWT?Peter Kelley2009-08-19T00:31:08Z2009-08-19T15:38:11Z
<p>We are currently designing a GIS intranet application using GWT and ESRI ArcGIS. We are looking at 2 client side Javascript libraries:</p>
<ol>
<li><a href="http://resources.esri.com/arcgisserver/apis/javascript/arcgis/" rel="nofollow">The ESRI Javascript API</a></li>
<li><a href="http://openlayers.org/" rel="nofollow">Open Layers</a></li>
</ol>
<p>The library will have to support <a href="http://webhelp.esri.com/arcgisserver/9.2/dotNet/manager/publishing/static%5Fmap%5Fsvcs.htm" rel="nofollow">fused and non fused map caching</a> as well as some layers that are dynamic. <a href="http://xircles.codehaus.org/projects/gwt-openlayers" rel="nofollow">Open Layers GWT integration</a> exists but the ESRI library is based on <a href="http://www.dojotoolkit.org/" rel="nofollow">Dojo</a>.</p>
<p>I'm looking for information and advice on where the gotchas will be for either approach.</p>
http://stackoverflow.com/questions/1264955/geoserver-geowebcache-antialias-largepolygon-error-openlayers0Geoserver GeoWebCache AntiAlias LargePolygon Error OpenLayersJonke2009-08-12T08:37:27Z2009-08-13T06:49:00Z
<p>When using geoserver (1.7.X) and OpenLayers (WMS layer) togheter I get a weird behavour if a render several layers with antialias and one of the bottom layers is really large compared to the rest of the features in the layers "on top".
<img src="http://i30.tinypic.com/5zhys0.jpg" alt="alt text" /></p>
<p>The background should have been not black.</p>
<p>If I go straight to the geoserver and disable antialias I get correct but when I try to use the geowebcache I have not found any way to make sure that the format_options=antialias:none is used when Geowebcache asks the geoserver for the tile.</p>
<p>According to some documentation there is a vendor tag in geowebcache but I can't see any effect on then antialiasing.</p>
<p>Anyone who have a succesful go at format_options in the vendor tag in geowebcache?</p>
http://stackoverflow.com/questions/1237424/openlayers-vector-bug-in-ie0OpenLayers vector bug in IE ?!stoimen2009-08-06T07:32:29Z2009-08-06T19:46:21Z
<p>Is there any chance that IE is not rendering vectors for OpenLayers when the vector layer is hidden?</p>
http://stackoverflow.com/questions/802218/openlayers-containspoint-after-pan0OpenLayers .containsPoint after panAdrian2009-04-29T12:49:07Z2009-07-23T16:47:41Z
<p>I've seem to have hit a bug or i have overlooked something.</p>
<p>I written some code that enumerates through all the vector features on a OpenLayers Vector layer - to check if the mouse is inside a vector feature - if so then it displays some info based on the feature.</p>
<p>I had to write my own methods to do this because the existing OpenLayers Controls( select etc) stop after finding a feature under the mouse, and i the possibility of several features being stacked on top of one another.</p>
<p>My problem is that the .containsPoint method seems to be using coords from before a 'pan'.
After zooming in or out the geometry seems to be in the right place and .containsPoint is works correctly when I wave the mouse over the map.</p>
<p>Do I need to do something after the map has been panned to update something( feature's geometry)</p>
http://stackoverflow.com/questions/813618/creating-a-box-control-over-an-area-of-the-map-with-openlayers0Creating a Box Control over an area of the map with OpenLayersBernie Perez2009-05-01T22:48:36Z2009-07-23T16:44:13Z
<p>I am using <a href="http://openlayers.org/" rel="nofollow">OpenLayers</a> to create a box of interest with my program. I am using this code:</p>
<pre><code>var control = new OpenLayers.Control();
OpenLayers.Util.extend(control, {
draw: function () {
this.box = new OpenLayers.Handler.Box( control,
{"done": this.notice},
{keyMask: OpenLayers.Handler.MOD_SHIFT});
this.box.activate();
},
notice: function (bounds) {
areaSelected(bounds);
}
});
map.addControl(control);
</code></pre>
<p>to capture the "Shift Create a Box" <a href="http://dev.openlayers.org/releases/OpenLayers-2.7/doc/apidocs/files/OpenLayers/Control-js.html" rel="nofollow">control</a> and use the area selected as my area of interest. However the values come back as pixels. But I want <strong>Longitude and Latitude</strong>, not pixels. The Mouse Position <a href="http://dev.openlayers.org/docs/files/OpenLayers/Control/MousePosition-js.html" rel="nofollow">control</a> does show the correct long & lat. I really don't care how to box is created, I just want an easy way for the user to select a area of the map and I need to get the lat & longs of the area. (Box, Circle, doesn't matter)</p>
http://stackoverflow.com/questions/1081812/javascript-unspecified-error-in-open-layers1Javascript "unspecified error" in Open LayersAlin2009-07-04T08:44:27Z2009-07-23T16:38:08Z
<p>I am getting this error <img src="http://img239.imageshack.us/img239/6936/jserror.png" alt="alt text" /> when the map loads.</p>
<p>The error is in the original, unmodified OpenLayers.js file on this line:</p>
<p><code>return!!(document.namespaces);</code></p>
<p>I have tried rewriting it to:</p>
<p><code>return (typeof(document.namespaces) != 'undefined');</code></p>
<p>and it worked but then I get same "unspecified" errors on further referrals to document.namespaces:</p>
<p><code>if(!document.namespaces.olv){document.namespaces.add("olv",this.xmlns); ... </code></p>
<p>I tried rewriting this to:</p>
<p><code>if(typeof(document.namespaces.olv) == 'undefined') { ...</code></p>
<p>but I get the same "unspecified error".</p>
<p>I only get this error on Internet Explorer (I tested on 7) and not in Firefox.</p>
<p>Any clues?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/884692/dragging-markers-with-ordnance-survey-openlayers-api0Dragging markers with Ordnance Survey/Openlayers apiChris2009-05-19T19:49:36Z2009-07-23T15:49:58Z
<p>I've created a site <a href="http://www.chrisgrimble.com/OSMapApi/index.php?easting=560500&northing=193500" rel="nofollow">link text</a> using the api produced by the Ordnance Survey (I think this is called OpenSpace) which is based on OpenLayers. I've got it so you can click on the map to add a marker and I want to then be able to click on the markers and drag it around the map. Is there a simple way to do this using either the OpenSpace or OpenLayers apis.</p>
http://stackoverflow.com/questions/1087582/gdal2tiles-and-vectors0GDAL2Tiles and vectorsStephen J. Fuhry2009-07-06T15:19:57Z2009-07-09T20:38:03Z
<p>I am trying to make an interactive map of a really big warehouse.</p>
<p>I have scanned blueprints and am using OpenLayers with a TMS data source (generated using GDAL2Tiles) to display the map. Everything looks fantastic, but I'm at a total loss as to how to create a vector layer on top of it!</p>
<p>Ideally, I'd have ~100 or so vectors on top of my warehouse, each of which would be clickable to bring up additional information, blah blah blah.. but what do i use to make the vectors, and how do i reference the same location on the image at different zoom levels, since i am not using lat/long coordinates?</p>
http://stackoverflow.com/questions/871330/how-to-get-post-url-with-parameters-from-httpservletreqest-in-servletfilter-for0How to get POST URL with parameters from HttpServletReqest in ServletFilter? (For proxy app)Michael OCleirigh2009-05-16T00:18:56Z2009-05-16T04:03:07Z
<p>Due to browser restrictions I need to use a proxy to make an openlayers map work.</p>
<p>The OpenLayers.ProxyHost javascript object handles the generation of a URL like:</p>
<p><a href="http://webhost:8080/app/proxy/?url=http://WFS_server/options/" rel="nofollow">http://webhost:8080/app/proxy/?url=http://WFS_server/options/</a>...</p>
<p>Some of the requests will be GET's and others will be POST's.</p>
<p>I've written a Servlet Filter that will recieve the request and then use the commons HttpClient to dispatch it to the host specified by the 'url' parameter.</p>
<p>Everything works for GET but I am having difficulties getting the 'url' parameter value for POST's.</p>
<p>According to the javadoc I see in eclipse it should be request.getRequestURI() but this is only returning the value of the post minus the url parameter value (i.e. <a href="http://webhost:8080/app/proxy/" rel="nofollow">http://webhost:8080/app/proxy/</a>)</p>
<p>In fact the only way I can get the data is to call the request.toString() method and parse out the url.</p>
<p>I'm deploying into a Jetty 6.1.11 server so I'm wondering if this might be a Jetty bug or if I'm missing something on where to get this detail?</p>
http://stackoverflow.com/questions/833151/screen-co-ordinates-to-latitude-and-longitude0Screen co ordinates to latitude and longitudeAbhi2009-05-07T06:26:04Z2009-05-07T07:15:21Z
<p>In open layers library, below is the method used to convert a screen co ordinate to latitude and longitude. I am not able to figure out the logic this method encapsulates?</p>
<p><code></p>
<pre>
getLatLonFromPoint: function (point) {
var center = this.getCenter();
//map center lat/lon
var res = this.getResolution();
//pre defined by the user. Represents the change in lat long per screen unit at the given zoom level
var size = this.getSize();
//this is the width and height of the div in which the map has to be displayed
var delta_x = point.x - (size.w / 2);
var delta_y = point.y - (size.h / 2);
return new OpenLayers.LatLon(
center.lat - delta_y * res,
center.lon + delta_x * res );
}
</pre>
<p></code></p>
<p>Can someone please provide some pointers?</p>
http://stackoverflow.com/questions/813644/using-an-png-or-jpeg-for-map-with-openlayers-scale-zoom-problem0Using an PNG or JPEG for Map with OpenLayers (Scale/Zoom Problem)Bernie Perez2009-05-01T22:59:12Z2009-05-01T23:50:14Z
<p>I am using an image to display my map with OpenLayers. My JS code looks like this:</p>
<pre><code>map = new OpenLayers.Map('map');
var options = {numZoomLevels: 7,
isBaseLayer: true,
};
var globe = new OpenLayers.Layer.Image(
'Globe ESA',
'http://upload.wikimedia.org/wikipedia/commons/0/07/World_map_blank_black_lines_4500px.gif',
new OpenLayers.Bounds(-180, -90, 180, 90),
new OpenLayers.Size(4500, 2234),
options);
map.addLayers(globe);
markers = new OpenLayers.Layer.Markers("markers");
map.addLayer(markers);
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.zoomToMaxExtent();
map.addControl(new OpenLayers.Control.MousePosition());
</code></pre>
<p>My CSS is:</p>
<pre><code>#map {
width: 640px;
height: 480px;
border: 1px solid black;
}
</code></pre>
<p>But I can't get OpenLayers to scale down the large image. It is always display at full resolution and I can't zoom out to display the whole globe. Help please.</p>
http://stackoverflow.com/questions/632141/generating-geo-referenced-images-in-c0Generating Geo-Referenced Images in C#Nathan2009-03-10T20:32:16Z2009-04-24T19:11:29Z
<p>I want to create some heat-map style tiles to overlay over our base maps using Open Layers. Basically, I want to divide some some bounding box into a grid, and display each square of the grid using a different color based on how many points of a sample fall within that grid square. </p>
<p>The technologies involved are C#, OpenLayers, SQL Server 2008 and GeoServer.</p>
<p>My question is basically one of general approach, I'm not really sure where to put the tip of the chisel on this one.</p>
<p>My ultimate goal is to be able to take any arbitrary bounding box, calculate an x-mile by x-mile grid that fits within that bounding box, the iterate over a collection of individual points and assign them to one grid square or another so I can calculate point density per grid square, then color the grid according to the densities, then overlay that on a CloudMade base map using Open Layers.</p>
<p>Any help at all would be greatly appreciated, on the whole thing or any piece of it.</p>
http://stackoverflow.com/questions/559431/how-to-display-data-using-openlayers-with-openstreetmap-in-geodjango6How to display data using openlayers with OpenStreetMap in geodjango?monkut2009-02-18T01:03:40Z2009-02-20T15:09:57Z
<p>I've got geodjango running using <a href="http://openlayers.org/" rel="nofollow">openlayers</a> and <a href="http://www.openstreetmap.org/" rel="nofollow">OpenStreetMaps</a> with the admin app.</p>
<p>Now I want to write some views to display the data. Basically, I just want to add a list of points (seen in the admin) to the map.</p>
<p>Geodjango appears to use a <em>special</em> <a href="http://code.djangoproject.com/browser/django/tags/releases/1.0.2/django/contrib/gis/templates/gis/admin/openlayers.js" rel="nofollow">openlayers.js</a> file to do it's magic in the admin. Is there a good way to interface with this?</p>
<p>How can I write a view/template to display the geodjango data on a open street map window, as is seen in the admin?</p>
<p>At the moment, I'm digging into the <a href="http://openlayers.org/" rel="nofollow">openlayers.js</a> file and api looking for an 'easy' solution. (I don't have js experience so this is taking some time.) </p>
<p>The current way I can see to do this is add the following as a template, and use django to add the code needed to display the points. (Based on the example <a href="http://openlayers.org/dev/examples/vector-features.html" rel="nofollow">here</a>)</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Draw Feature Example</title>
<script src="http://www.openlayers.org/api/OpenLayers.js"></script>
<script type="text/javascript">
var map;
function init(){
map = new OpenLayers.Map('map');
var layer = new OpenLayers.Layer.WMS( "OpenLayers WMS",
"http://labs.metacarta.com/wms/vmap0", {layers: 'basic'} );
map.addLayer(layer);
/*
* Layer style
*/
// we want opaque external graphics and non-opaque internal graphics
var layer_style = OpenLayers.Util.extend({}, OpenLayers.Feature.Vector.style['default']);
layer_style.fillOpacity = 0.2;
layer_style.graphicOpacity = 1;
/*
* Blue style
*/
var style_blue = OpenLayers.Util.extend({}, layer_style);
style_blue.strokeColor = "blue";
style_blue.fillColor = "blue";
style_blue.graphicName = "star";
style_blue.pointRadius = 10;
style_blue.strokeWidth = 3;
style_blue.rotation = 45;
style_blue.strokeLinecap = "butt";
var vectorLayer = new OpenLayers.Layer.Vector("Simple Geometry", {style: layer_style});
// create a point feature
var point = new OpenLayers.Geometry.Point(-111.04, 45.68);
var pointFeature = new OpenLayers.Feature.Vector(point,null,style_blue);
// Add additional points/features here via django
map.addLayer(vectorLayer);
map.setCenter(new OpenLayers.LonLat(point.x, point.y), 5);
vectorLayer.addFeatures([pointFeature]);
}
</script>
</head>
<body onload="init()">
<div id="map" class="smallmap"></div>
</body>
</html>
</code></pre>
<p>Is this how it's done, or is there a better way?</p>