I have code snippet that I use for filter the markers on gmap. Here is my code:
<h:panelGrid columns="1" cellpadding="5" style="width: 95%">
<h:form>
<p:separator style="margin-bottom:10px"/>
<h:outputText value="İLÇE:" style="font-weight: bold; float: left" id="district"/>
<p:selectOneMenu value="#{mapTrial.district}" effect="blind" style="width: 100%">
<f:selectItem itemLabel="" itemValue="" />
<f:selectItems value="#{populator.district}" />
</p:selectOneMenu>
<p:separator style="margin-bottom:10px"/>
<h:outputText value="DURUM:" style="font-weight: bold; float: left"/>
<p:selectOneMenu value="#{mapTrial.workStatus}" effect="blind" style="width: 100%">
<f:selectItem itemLabel="" itemValue="" />
<f:selectItems value="#{populator.workStatus}" />
</p:selectOneMenu>
<p:separator style="margin-bottom:10px"/>
<h:outputText value="KİŞİ:" style="font-weight: bold; float: left"/>
<p:selectOneMenu value="#{mapTrial.engArch}" effect="blind" style="width: 100%">
<f:selectItem itemLabel="" itemValue="" />
<f:selectItems value="#{populator.resEngArchs}" />
</p:selectOneMenu>
<p:separator style="margin-bottom:10px"/>
<h:outputText value="SEKTÖR:" style="font-weight: bold; float: left"/>
<p:selectOneMenu value="#{mapTrial.sector}" effect="blind" style="width: 100%">
<f:selectItem itemLabel="" itemValue="" />
<f:selectItems value="#{populator.sectors}" />
</p:selectOneMenu>
<p:separator style="margin-bottom:10px"/>
<p:commandButton value="Filter">
<p:ajax listener="#{mapTrial.filter}" event="click" update="growl" partialSubmit="true" immediate="true" />
</p:commandButton>
</h:form>
When I select the options from drop down menus, I press the filter button to be able to filter the markers. My back bean is as the following:
public String filter() {
StringBuilder sb = new StringBuilder().append("select p ")
.append("from Projects p ")
.append("where p=p");
if(district != null){
sb.append(" and p.district= :district");
}
if(engArch!=null){
sb.append(" and p.engArch= :engArch");
}
if(workStatus!=null){
sb.append(" and p.workStatus= :workStatus");
}
if(sector!=null){
sb.append(" and sector= :sector");
}
System.out.println(sb.toString());
Query qLu = emg.createQuery(sb.toString(), Projects.class);
if(district != null){
qLu.setParameter("district", district);
}
if(engArch!=null){
qLu.setParameter("engArch", engArch);
}
if(workStatus!=null){
qLu.setParameter("workStatus", workStatus);
}
if(sector!=null){
qLu.setParameter("sector", sector);
}
//execute query
List<Projects> pro = qLu.getResultList();
simpleModel = new DefaultMapModel();
//Shared coordinates
LatLng coord1;
for (Projects d : pro) {
//proje bilgisi
coord1 = new LatLng(Double.valueOf(d.getProjectCoordLat().toString()), Double.valueOf(d.getProjectCoordLon().toString()));
simpleModel.addOverlay(new Marker(coord1, d.getId().toString(), "", "http://maps.google.com/mapfiles/ms/micons/red-dot.png"));
System.out.println(d.getProjectName());
}
return "";
}
What I want is when I click on the button, only related markers have to show up. I can execute the query nicely and retrieve the desired lat and long of each marker.
So how can I basically filter those markers according to my query in the same window? I tried with ajax onclick event but nothing happens. Any idea is greatly appriciated.
