If zipcode is not found, we now return null.

This commit is contained in:
MattMo 2022-07-26 17:16:11 -07:00
parent 0e1c1f16cb
commit c7fb971e9c

View File

@ -61506,6 +61506,10 @@ var z = [
class Zip2LatLng {
static geocode(zip) {
var r = z[zip];
if (!r)
return null;
return {
lat: r[0] / 100000,
lng: (r[1] / 100000) * -1,