From dc12bf866909b5f69818f3dd24c4c3801c1a9084 Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Sun, 10 Sep 2017 19:07:30 -0400 Subject: RT# 76968 - Created new interactive map to select census tract --- httemplate/misc/openmap.html | 88 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 httemplate/misc/openmap.html (limited to 'httemplate/misc/openmap.html') diff --git a/httemplate/misc/openmap.html b/httemplate/misc/openmap.html new file mode 100644 index 000000000..6ccc72491 --- /dev/null +++ b/httemplate/misc/openmap.html @@ -0,0 +1,88 @@ + + + Find Census Tract Map + + + + +

Please select your location on the map

+ + + + + +
+ +

+ Census Tract:

+ +
+
+
+ + + + + +<%init> + +local $SIG{__DIE__}; #disable Mason error trap + +my $DEBUG = 0; + +my $census_year = $cgi->param('census_year'); +my $pre = $cgi->param('pre'); +my $zip_code = $cgi->param('zip_code'); +my $address = $cgi->param('address'); +my $loc = $zip_code ? $zip_code : $address; + + \ No newline at end of file -- cgit v1.2.1