...don't work.
this is the ```$geodata``` PHP array var_dump():
<pre>[code]array(255) {
[1]=>
array(6) {
["lat"]=>
string(15) "12.345"
["long"]=>
string(15) "12.345"
["title"]=>
string(0) ""
["desc"]=>
string(0) ""
["thumb"]=>
string(0) ""
["current"]=>
string(1) "0"
}
...[/code]</pre>
This is in the HTML source code:
<pre>[code]<script>var geodata = new Array();
geodata[0] = {
lat : "12.345",
long : "12.345",
title : "",
desc : "",
thumb : "",
current : "0"
}; geodata[1] = {
lat : "12.678",
long : "12.678",
title : "",
desc : "",
thumb : "",
current : "0"
}; geodata[2] = {
...[/code]</pre>
```printOpenStreetMap($geodata);```
or
<pre>[code]$map = new zpOpenStreetMap($geodata);
$map->printMap();[/code]</pre>
display no map, only a grey box.