May 2019
Beginner to intermediate
650 pages
14h 50m
English
You can add any parallels or meridians to a map by filtering graticule lines with step() and extent(). The following illustration shows the code used to create a detailed area within a larger map, and standard parallels for the tropics and polar circles.

Instead of circles, you can also draw lines and polygons on a map using simple GeoJSON geometries. Another way to draw the equator is to pass a LineString as the datum:
const equator = {type:"LineString",coordinates:[[-179.9,0],[0,0],[179.9,0]]} ...Read now
Unlock full access