DEV Community

Justin Poehnelt for Google Maps Platform

Posted on • Originally published at justin.poehnelt.com on

WMS Layer on Google Maps

The following code is now a package published to NPM at @googlemaps/ogc.

A Web Map Service(WMS) is a 20 year old standard for serving georeferenced images over HTTP. Google Maps allows developers to add custom map types. Let’s see how we combine the two!

Before jumping into JavaScript, we need to explore some XML and learn more about the WMS standard and tiled map numbering.

About the Web Map Service Standard

The WMS standard exposes many options such as coordinate reference systems(CRS), bounding box, and style selection. These parameters are specified in an XML document that can be queried by sending a GetCapabilities request to the WMS. Below is a extract of the response for the National Land Cover Database server.

<Layer queryable="1" opaque="0">
    <Name>mrlc_display:NLCD_2016_Land_Cover_L48</Name>
    <Title>NLCD_2016_Land_Cover_L48</Title>
    <Abstract/>
    <KeywordList>
        <Keyword>NLCD_2016_Land_Cover_L48_20210604_3857</Keyword>
        <Keyword>WCS</Keyword>
        <Keyword>ERDASImg</Keyword>
    </KeywordList>
    <CRS>EPSG:3857</CRS>
    <CRS>CRS:84</CRS>
    <EX_GeographicBoundingBox>
        <westBoundLongitude>-130.23282801589895</westBoundLongitude>
        <eastBoundLongitude>-63.6719773760062</eastBoundLongitude>
        <southBoundLatitude>21.742250095963353</southBoundLatitude>
        <northBoundLatitude>52.87726396463256</northBoundLatitude>
    </EX_GeographicBoundingBox>
    <BoundingBox CRS="CRS:84" minx="-130.23282801589895" miny="21.742250095963353" maxx="-63.6719773760062" maxy="52.87726396463256"/>
    <BoundingBox CRS="EPSG:3857" minx="-1.4497452099297844E7" miny="2480607.2664330592" maxx="-7087932.099297844" maxy="6960327.266433059"/>
    <Style>
        <Name>mrlc:mrlc_NLCD_Land_Cover</Name>
        <Title>A boring default style</Title>
        <Abstract>A sample style for rasters</Abstract>
        <LegendURL width="261" height="509">
            <Format>image/png</Format>
            <OnlineResource
                xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="https://www.mrlc.gov/geoserver/ows?service=WMS&request=GetLegendGraphic&format=image%2Fpng&width=20&height=20&layer=mrlc_display%3ANLCD_2016_Land_Cover_L48"/>
            </LegendURL>
        </Style>
    </Layer>
Enter fullscreen mode Exit fullscreen mode

These options become query parameters in our GetMap request to the WMS returning the following.

NLCD 2016 Land Cover L48

NLCD 2016 Land Cover L48

https://www.mrlc.gov/geoserver/NLCD_Land_Cover/wms?
&REQUEST=GetMap
&SERVICE=WMS
&VERSION=1.1.1
&LAYERS=mrlc_display:NLCD_2016_Land_Cover_L48
&FORMAT=image/png
&SRS=EPSG:3857  // Web Mercator
&BBOX=-10175297.20791413,5165920.120941021,-10018754.17394622,5322463.154908929 // Coordinates in Web Mecator
&WIDTH=1024
&HEIGHT=1024
Enter fullscreen mode Exit fullscreen mode

It is important to note that the coordinates for the BBOX parameter must be in the coordinate reference system specified by the spatial reference system(SRS). In the above request we are using EPSG:3857, also known as web mercator.

Web Mercator , Google Web Mercator , Spherical Mercator , WGS 84 Web Mercator [1] or WGS 84/Pseudo-Mercator is a constiant of the Mercator projection and is the de facto standard for Web mapping applications. It rose to prominence when Google Maps adopted it in 2005. — Wikipedia

Google Maps ImageMapType

Now that we have a basic understanding how the HTTP request to retrieve imagery from a WMS, we can begin exploring the interface Google Maps exposes for its map types, specifically the google.maps.ImageMapType and google.maps.ImageMapTypeOptions.

Interface for google.maps.ImageMapType

Interface for google.maps.ImageMapType

Your getTileUrl is the option required to enable a WMS layer in Google Maps and how we create that tile URL must follow the WMS standard discussed above.

There are two primary steps to creating the getTileUrl function:

  1. Convert point into web mercator coordinates.
  2. Assemble the WMS URL.

Tile(Point and Zoom) to Web Mercator Coordinates

Before diving into the simple math of calculating the web mercator coordinates, we need to understand a little more about tiled web maps and the parameters of the getTileUrl function we will write.

Most tiled web maps follow certain Google Maps conventions:

  • Tiles are 256x256 pixels
  • At the outer most zoom level, 0, the entire world can be rendered in a single map tile.
  • Each zoom level doubles in both dimensions, so a single tile is replaced by 4 tiles when zooming in.

With the above conventions, we know that at zoom level 1, the world is divided into 4 tiles with the coordinates depicted below.

XYZ Tile Map Pattern

XYZ Tile Map Pattern

We also know that the web mercator extent is a square and its bounds are -PI * 6378137, PI * 6378137. Given the above, we can convert from x, y, and z to coordinates using the following:

const EXTENT = [-Math.PI * 6378137, Math.PI * 6378137];

function xyzToBounds(x, y, z) {
    const tileSize = EXTENT[1] * 2 / Math.pow(2, z);
    const minx = EXTENT[0] + x * tileSize;
    const maxx = EXTENT[0] + (x + 1) * tileSize;
    // remember y origin starts at top
    const miny = EXTENT[1] - (y + 1) * tileSize;
    const maxy = EXTENT[1] - y * tileSize;
    return [minx, miny, maxx, maxy];
}
Enter fullscreen mode Exit fullscreen mode

Calling xyzToBounds(0, 0, 1) returns [-20037508.342789244, 0, 0, 20037508.342789244] which is what we would expect for the upper left tile in the diagram above.

Assemble the WMS URL

The next step is assembling the string for the WMS getMap URL with the function defined above.

const getTileUrl = (coordinates, zoom) => {
  return (
    "https://www.mrlc.gov/geoserver/NLCD_Land_Cover/wms?" +
    "&REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1" +
    "&LAYERS=mrlc_display%3ANLCD_2016_Land_Cover_L48" +
    "&FORMAT=image%2Fpng" +
    "&SRS=EPSG:3857&WIDTH=256&HEIGHT=256" +
    "&BBOX=" +
    xyzToBounds(coordinates.x, coordinates.y, zoom).join(",")
  );
};
Enter fullscreen mode Exit fullscreen mode

Putting it All Together

Now that we have our getTileUrl function, we can construct our ImageMapType. Don’t forget that maxZoom is required! See reference table above or here.

const landCover = new google.maps.ImageMapType({
  getTileUrl: getTileUrl,
  name: "Land Cover",
  alt: "National Land Cover Database 2016",
  minZoom: 0,
  maxZoom: 19,
  opacity: 1.0map
});

landCover.setMap(map);
Enter fullscreen mode Exit fullscreen mode

And add it to our map! See this JSFiddle link for an interactive example.

NLCD 2016 Land Cover L48

NLCD 2016 Land Cover L48

Notes

  • XZY, TMS, WTMS will likely be optimized for many simultaneous requests and should be used over WMS when possible.
  • TMS is very similar to XYZ except for the order of y.
  • Not all WMS will support EPSG:3857 but it is possible to do the calculation to EPSG:4326 coordinates(latitude and longitude) which may be more commonly supported.

Top comments (0)