The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

Using Yandex Map Without API

I want to write a map server using yandex map tiles. I need : *BoundingBox of world (in meters) *Size of tile at zoom level 0(in meters) *EPSG code that yandex map use Is there anyone who know ...
0
votes
1answer
34 views

openlayer begineer

i am beginner with open-layer i feel some difficulty in understand what is this piece of code mean var lonlat = new OpenLayers.LonLat(-1.788, 53.571).transform( new ...
0
votes
1answer
61 views

How to use bbox in long/lat with google/bing/etc… using mapserver‏

The bbox of OpenLayers.Control.GetFeature works in utm when the baselayer is 900913 ie. google/bing/etc) and in long/lat when the baselayer is 4326 (ie. my postgis layers served by mapserver), no ...
0
votes
0answers
49 views

Do you know how to load Offline raster map?

everyone!Could u please tell me how to load Offline raster map,which is displayed by projection EPSG900913?Tks in advance.
0
votes
1answer
68 views

Distance between points by EPSG coordinates

I have a points with coordinates EPSG Projection 3059 - LKS92 / Latvia TM. I need to compute the distance in meters between two points. It is easy to compute euclidean distance between two points, ...
2
votes
2answers
267 views

How to add EPSG 900913 to geodjango spatialite database?

I'm trying to include a Google Maps widget in my admin-interface using this snippet on a Linux system (presently running locally on a Bitnami django stack in VMWare Player). The map renders, but ...
1
vote
1answer
180 views

Can GeoServer work with flat coordinate system

I have an application that displays different items on the custom map. The map has a coordinate system which is basically (X,Y) coordinates in centimeters where top-left corner has coordinates(0,0). ...
0
votes
0answers
102 views

Bing Maps with SQL Server datasource. Converging different EPSG systems

I've got a Bing Maps front end, querying a SQL Server 2008 R2 backend for point information. User moves map, server is queried, returns some results. So far, so good. But... The map on-screen is ...
1
vote
1answer
812 views

OSM: convert ties from projected coordinates in spherical mercator “EPSG:900913” to “EPSG:4326” coordinates

I'm using a map with a layer (from the example): var lonLat = new OpenLayers.LonLat(40.4088576, -86.8576718) .transform( new OpenLayers.Projection("EPSG:4326"), // ...
1
vote
1answer
324 views

Convert EPSG:32632 coordinates in meters in JAVA

I'm trying to find a solution to convert my epsg:32632 coordinates into meters. epsg:32632 coordinates look like: 13.39453125, 58.34765625. Does anyone know how can i do this in java? Thanks, Ares
2
votes
2answers
752 views

EPSG:4008 Layer Not Displaying

I have a map with OSM and Google Base layers and EPSG:4326 overlays. Now I am also trying to add overlays with other EPSG's to my map. Overlays which had an EPSG:2333 displayed just fine with no ...
0
votes
4answers
4k views

java transform projection EPSG:900913 to EPSG:4326

in the openlayers we can simple transform EPSG:900913 to EPSG:4326 I'm look for a java lib can do that. here I found this, http://www.jhlabs.com/java/maps/proj/index.html but the document is in c++ ...