Skip to content

Commit ad797d9

Browse files
committed
Fix WorldMap (use real URL)
1 parent a03362d commit ad797d9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

template/osm-map2.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@ function toggle(arrow)
337337
var nb_items = 0;
338338
for (var i = 0; i < addressPoints.length; i++) {
339339
var a = addressPoints[i];
340-
//var pathurl = root_url+'i.php?'+a[3];
341-
var pathurl = "http://placehold.it/40x40&text=FooBar1";
340+
var pathurl = root_url+'i.php?'+a[3];
341+
//var pathurl = "http://placehold.it/40x40&text=FooBar1";
342342
343343
//console.log(a[0] +" > "+ min.lat +" && "+ a[1] +" > "+ min.lng +" && "+ a[0] +" < "+ max.lat +" && "+ a[1] +" < "+ max.lng);
344344
if (a[0] > min.lat && a[1] > min.lng && a[0] < max.lat && a[1] < max.lng)

0 commit comments

Comments
 (0)