We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cbcdf1 commit b838a86Copy full SHA for b838a86
showLocality.cfm
@@ -87,6 +87,18 @@
87
<cfif localityResults.recordcount is 0>
88
nothing found; try another search
89
</cfif>
90
+ <cfquery name="dlocid" dbtype="query">
91
+ select locality_id from localityResults group by locality_id
92
+ </cfquery>
93
+
94
+ <cfif localityResults.recordcount lt 1000>
95
+ <a href="/bnhmMaps/bnhmPointMapper.cfm?locality_id=#valuelist(dlocid.locality_id)#" target="_blank">Map <strong>localities</strong> @BerkeleyMapper</a>
96
+ <cfelse>
97
+ 1000 record limit on mapping, sorry...
98
+ </cfif>
99
100
101
102
<cfquery name="geog" dbtype="query">
103
select distinct higher_geog, SOURCE_AUTHORITY,geog_auth_rec_id from localityResults order by higher_geog
104
</cfquery>
0 commit comments