Tested tool guide
Tested browser tools
Checked August 16, 2026
What Service Area Mapper does, with a checked example
A local business's coverage area usually lives in someone's head, not in a format a website can use. This tool captures it: drop a center point and pick a radius, or trace a custom polygon on the map, and it records the coordinates, measures the area, and exports the shape as GeoJSON for embedded maps and as Schema.org JSON-LD for the structured data on local SEO pages. The usual surprise is geometric: a radius zone is straight-line distance, so a 10-mile circle often includes areas that are 25 minutes of driving away.
Worked example
A concrete input and expected output from the current implementation.
Input
Center: 40.7128, -74.0060 (New York, NY)
Radius: 5 miles
->
Expected output
Zone type: radius
Center: 40.7128, -74.0060
Radius: 5 mi
Area: 78.5 sq mi
Bounding box: SW (40.6403, -74.1016), NE (40.7853, -73.9104)
Exports: GeoJSON polygon, JSON-LD areaServed
A 5-mile radius around that center gives area pi x 5^2 = 78.5 sq mi. The bounding box shifts the center by the radius converted to degrees: 5/69 of latitude and 5/(69 x cos 40.71 degrees) of longitude, because a degree of longitude narrows as latitude rises; the GeoJSON export is a polygon built from that circle, while the JSON-LD records the center and radius as GeoCircle properties.