If zipcode is not found, we now return null.
This commit is contained in:
parent
0e1c1f16cb
commit
c7fb971e9c
@ -61506,6 +61506,10 @@ var z = [
|
|||||||
class Zip2LatLng {
|
class Zip2LatLng {
|
||||||
static geocode(zip) {
|
static geocode(zip) {
|
||||||
var r = z[zip];
|
var r = z[zip];
|
||||||
|
|
||||||
|
if (!r)
|
||||||
|
return null;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
lat: r[0] / 100000,
|
lat: r[0] / 100000,
|
||||||
lng: (r[1] / 100000) * -1,
|
lng: (r[1] / 100000) * -1,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user