aboutsummaryrefslogtreecommitdiffstats
path: root/isuifang_solr/solr/conf/velocity/querySpatial.vm
diff options
context:
space:
mode:
Diffstat (limited to 'isuifang_solr/solr/conf/velocity/querySpatial.vm')
-rw-r--r--isuifang_solr/solr/conf/velocity/querySpatial.vm40
1 files changed, 40 insertions, 0 deletions
diff --git a/isuifang_solr/solr/conf/velocity/querySpatial.vm b/isuifang_solr/solr/conf/velocity/querySpatial.vm
new file mode 100644
index 0000000..3b57de4
--- /dev/null
+++ b/isuifang_solr/solr/conf/velocity/querySpatial.vm
@@ -0,0 +1,40 @@
+#set($queryOpts = $params.get("queryOpts"))
+#if($queryOpts == "spatial")
+<div>
+ #set($loc = $request.params.get('pt'))
+ #set($dist = $request.params.get('d', "10"))
+ <label #annTitle("Add the &pt parameter")>Location Filter:
+ <select id="pt" name="pt">
+ <option value="none"
+ #if($loc == '')selected="true"#end>No Filter</option>
+ <option value="45.17614,-93.87341"
+ #if($loc == '45.17614,-93.87341')selected="true"#end>Buffalo, MN</option>
+ <option value="37.7752,-100.0232"
+ #if($loc == '37.7752,-100.0232')selected="true"#end>Dodge City, KS</option>
+ <option value="35.0752,-97.032"
+ #if($loc == '35.0752,-97.032')selected="true"#end>Oklahoma City, OK</option>
+ <option value="37.7752,-122.4232"
+ #if($loc == '37.7752,-122.4232')selected="true"#end>San Francisco CA</option>
+ </select>
+ </label>
+ <span #annTitle("Add the &d parameter")>Distance (KM): <input id="d" name="d" type="text" size="6"
+ value="#if($dist != '')${dist}#{else}10#end"/></span>
+<input type="hidden" name="sfield" value="store"/>
+<input type="hidden" id="spatialFQ" name="fq" value=""/>
+<input type="hidden" name="queryOpts" value="spatial"/>
+</div>
+<script type="text/javascript">
+ $('#query-form').submit(function() {
+ if ($("#pt").val() != "none") {
+ $("#spatialFQ").val("{!bbox}");
+ }
+ $fqs = $("#allFQs").val();
+ $fqs = $fqs.replace("{!bbox}", "");
+ if ($fqs == ''){
+ $("#allFQs").remove();
+ }
+ $("#allFQs").val($fqs);
+ return true;
+ });
+</script>
+#end \ No newline at end of file