What is EPSG 3857? Web Mercator Projection

EPSG 3857 (also called Web Mercator or Pseudo-Mercator) is the projected coordinate system that powers nearly every interactive web map. Google Maps, OpenStreetMap, Bing Maps, and Mapbox all use it to display map tiles.

Quick Reference
EPSG Code: 3857
CRS Name: WGS 84 / Pseudo-Mercator
Type: Projected
Units: Meters
Projection: Mercator (spherical approximation)
Coverage: ~85.06 S to ~85.06 N (poles excluded)
Look up EPSG 3857 in our CRS Finder Convert to Web Mercator

How Web Mercator Works

The Mercator projection wraps a cylinder around the globe at the equator and projects Earth's surface onto it. EPSG 3857 treats the Earth as a perfect sphere (not an ellipsoid) for faster tile rendering. This means:

  • The map is a perfect square (the world fits in one tile at zoom level 0)
  • North is always up
  • Lines of latitude become horizontal lines
  • Lines of longitude become vertical lines
  • Shapes are preserved near the equator but distorted near the poles

Why Web Mercator Distorts Reality

The price of making a square, scrollable map: areas near the poles appear much larger than they really are.

Land MassReal Area (km²)Mercator Appearance
Greenland2.16 millionLooks like South America
Africa30.37 millionLooks similar to Greenland
Russia17.1 millionLooks larger than Africa
Antarctica14.2 millionExtends infinitely (cannot be shown)
Rule of thumb: Never use EPSG 3857 for area calculations, distance measurements, or scientific analysis. It is designed for visual map display only.

EPSG 3857 Coordinates

In EPSG 3857, coordinates are expressed in meters from the intersection of the equator and the Prime Meridian (0,0):

  • X (Easting): meters east or west of the Prime Meridian
  • Y (Northing): meters north or south of the equator

Example: Tokyo (35.6762, 139.6503 in EPSG 4326) becomes approximately X: 15540587, Y: 4257066 in EPSG 3857.

EPSG 3857 vs EPSG 4326

FeatureEPSG 3857EPSG 4326
TypeProjectedGeographic
UnitsMetersDegrees
Used forWeb map displayData storage, GPS
PolesCannot displayFull coverage
Area accuracyPoor (high distortion)Not applicable
Tile-friendlyYes (square tiles)No
Read the full comparison: EPSG 4326 vs 3857

PROJ4 Definition

+proj=merc +a=6378137 +b=6378137 +lat_ts=0 +lon_0=0
+x_0=0 +y_0=0 +k=1 +units=m +nadgrids=@null
+wktext +no_defs +type=crs

Related Tools