Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
9answers
1k views

Where can I find the coordinates needed to draw the US in the Mercator projection?

So I'm writing a Javascript library that takes x,y coordinates and uses them to draw a map of the US. To do this, I need to find the coordinate data necessary to draw each state. This map on ...
6
votes
2answers
2k views

Common Mercator Projection formulas for Google Maps not working correctly

I am building a Tile Overlay server for Google maps in C#, and have found a few different code examples for calculating Y from Latitude. After getting them to work in general, I started to notice ...
4
votes
1answer
617 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 ...
3
votes
2answers
42 views

Mercator map projection logic conflict

I'm looking for an explanation on why there are 2 different mercator formulas discussed on these sites. I understand this to be the correct mercator projection algorithm: ...
3
votes
2answers
576 views

how to Convert Lat ,long to an XY coordinate system (e.g. UTM) and then map this to pixel space of my Image

I have a very small area map , which I downloaded from Openstreet map(PNG) and also its OSM(.osm) file which contains its Lat ,long. Now I want to convert Lat ,long to an XY coordinate system (e.g. ...
3
votes
2answers
688 views

calculate tile size of google map at zoom level n

Hey. I have a maps application that uses google maps. I get the bounds off the map, and then I do some clustering markers on that grounds, but to be able to have the clusters stay at the same place, ...
2
votes
2answers
394 views

PHP GD - distort image to Mercator Projection view

i have an image that rendered from data i have on my DB. i need to convert this image, with Mercator Projection method, to distorted image that when i'll wrap a 3d sphere with it it'll looks ...
1
vote
1answer
92 views

Openlayers: baselayer overlay - projection

The issue is: I have vector/topo/image tiled maps for some places in north america which were published as ArcGIS Server REST service. These maps (A) are based in EPSG26912 projection. Now I wanna ...
1
vote
1answer
753 views

Implement Google Mercator (Spherical Mercator)

I would like to use the Spherical Mercator algorithm in my application to project lat/lon points to a 2D plane. The Spherical Mercator is also known as Google Mercator, EPSG-900913 or EPSG-3785. ...
1
vote
1answer
313 views

How to reproject a vector layer when you switch between base maps of different projections

I have OpenLayers map with two base layers: MetaCarta (EPSG:4326) and Google map (Mercator). sphericalMercator = false, units are degrees. There are also some markers, boxes, and vector data on the ...
0
votes
1answer
40 views

Compute pixels geographical coordinates of a callibrated map

I have some calibrated maps (using MapCalibrator), for which I need to find out the corresponding OSM style tiles. While I have found some algorithms to calculate the tiles from geographical ...
0
votes
1answer
381 views

Android: How To: mark the current location into a map (still image) - SOURCE CODE,TESTCASE,ACTUAL,EXPECTED OUTPUT ADDED

I have created another question (How to display a map (still image file) with a moving current location) But it contains 2 (two) questions, so i need to segregate it. I am trying to create a ...
0
votes
1answer
181 views

Atlas style map index for static google map

I'm using a static google map, but really this problem could apply to any maps project. I want to divide a map into multiple quadrants (of say 50x50 pixels) and label the columns as A, B, C.... and ...
0
votes
1answer
1k views

Converting Coordinates between custom Transverse Mercator and WGS84 Lon-Lat

I'm trying to put a bunch of (x,y) points on a map, that have a lon-lat origin. I'd like to set up a custom Transverse Mercator projection, centred on my origin, and use that to project my points into ...