Re: [OpenLayers-Users] need help with projection issues

2009-05-06 Thread Kris Geusebroek
[mailto:users-boun...@openlayers.org] On Behalf Of newbie Sent: Tuesday, May 05, 2009 5:11 PM To: users@openlayers.org Subject: Re: [OpenLayers-Users] need help with projection issues Dear All, If I need a circle based on a radius of 50m which function must I use ? I just have a lat and long only

Re: [OpenLayers-Users] need help with projection issues

2009-05-05 Thread newbie
Dear All, If I need a circle based on a radius of 50m which function must I use ? I just have a lat and long only. Thank you. Christopher Schmidt-2 wrote: On Fri, Jan 18, 2008 at 05:04:30PM +0100, O. Baum wrote: Hi Thomas, all, 2008/1/16, Thomas Wood grand.edgemas...@gmail.com:

[OpenLayers-Users] need help with projection issues

2008-01-14 Thread O. Baum
Hello list, I am new to OpenLayers and made my first attempts in using the JavaScript API of Google Maps and OpenLayers 2.5 these days. I want to draw vector graphics into the OpenLayers map. I have read and understood basically that I have to follow

Re: [OpenLayers-Users] need help with projection issues

2008-01-14 Thread Christopher Schmidt
On Mon, Jan 14, 2008 at 05:06:44PM +0100, O. Baum wrote: Hello list, I am new to OpenLayers and made my first attempts in using the JavaScript API of Google Maps and OpenLayers 2.5 these days. I want to draw vector graphics into the OpenLayers map. I have read and understood basically

Re: [OpenLayers-Users] need help with projection issues

2008-01-14 Thread Linda Rawson
As far as displaying the mouseposition I added this to that code. if (this.map.projection = EPSG:900913) { var v_lonLat = OpenLayers.Layer.SphericalMercator.inverseMercator(lonLat.lon, lonLat.lat); lonLat.lon = v_lonLat.lon; lonLat.lat = v_lonLat.lat; v_lonLat = null; } var digits =

Re: [OpenLayers-Users] need help with projection issues

2008-01-14 Thread Thomas Wood
On Jan 14, 2008 8:08 PM, Linda Rawson [EMAIL PROTECTED] wrote: As far as displaying the mouseposition I added this to that code. if (this.map.projection = EPSG:900913 ) { var v_lonLat = OpenLayers.Layer.SphericalMercator.inverseMercator(lonLat.lon, lonLat.lat); lonLat.lon = v_lonLat.lon;