Ben programlama toplam noob değilim (ama bu stackoverflow :-) sadece benim ikinci soru).
By a foreach function I get 5 different string values for $Loncoord, $Latcoord, $gui;
this I can see with the print_r
in the code written below:
"-5.68166666667","+24.6513888889","IMG_3308",
Ama şimdi $ haritası-> addMarkerByCoords (işlevi nedir?) 5 farklı işaretleri oluşturmak istiyorum.
print_r ("$Loncoord");
print_r ("$Latcoord");
print_r ("$gui");
$map->addMarkerByCoords("$Loncoord","$Latcoord","$gui",'OldChicago');
Bu mümkün mü?
Do I need to put them in a array and call these in the (function ?) or do I need to use a foreach function? I tried both for a week now but I can't get it working.
Bana yardımcı olabilir misiniz?
The answers you produced gave me a turn in the right direction. Thank you for the quick responses and the explaining part.
Ama addMarkerByCoord (function! (aptal me)) ben googlemaps API buldum:
function addMarkerByCoords($lon,$lat,$title = '',$html = '',$tooltip = '') {
$_marker['lon'] = $lon;
$_marker['lat'] = $lat;
$_marker['html'] = (is_array($html) || strlen($html) > 0) ? $html : $title;
$_marker['title'] = $title;
$_marker['tooltip'] = $tooltip;
$this->_markers[] = $_marker;
$this->adjustCenterCoords($_marker['lon'],$_marker['lat']);
// return index of marker
return count($this->_markers) - 1;
}