通过这个脚本大家好我在之后加载地图中的所有标记 我的页面顶部有5个下拉菜单,最初我已经加载了数据库中的所有标记现在我想根据选定的下拉列表过滤标记我怎么办请事先建议一些事情谢谢
check this image for more clarity
这是我加载谷歌地图的脚本
// property details filter in right side on map page for Buy
public function landing_property()
{
$state = Input::get('address');
$display=DB::table('property_details')
->where('state',$state)
->Where('sale_or_rent', '=', 'sale')
->get();
if(count($display)!=0)
{
return view::make('/pages/property_home', array('row'=>$display));
}
else
{
session::flash('status', 'No Records Found!!!');
return view::make('/pages/property_home', array('row'=>$display));
}
}
这是我的控制器
MERGE (n1:Label {unique_prop: "unique_value"})
MERGE (n2:Label {unique_prop: "unique_value"})
MERGE (n1)-[:rel]->(n2);