No result found.
";
}
foreach($properties as $property) {
if($property['Property']['longitude']) {
if(!empty($property['Property']['price'])){
$marker_price = "$".$property['Property']['price'];
}else{
$marker_price = "$0";
}
$marker_link = BASE_PATH."search/viewrent/".$property['Property']["id"];
$marker_id = $property['Property']["id"];
$long = $property['Property']['longitude'];
$latu = $property['Property']['latitude'];
if($long != '' && $latu != ''){
$markers[] = "['{$property['Property']['title']}', {$property['Property']['latitude']}, {$property['Property']['longitude']},'{$marker_price}','{$marker_id}', '{$property['Property']['pro_doorno']}', '{$property['Property']['pro_streetname']}', '{$property['Property']['pro_town']}', '{$property['Property']['pro_postcode']}', '{$property['Property']['mainimage']}', $i]";
$i++;
}
}
?>