1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
|
<?php
// Displays a place hierachy
//
// webtrees: Web based Family History software
// Copyright (C) 2011 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2010 PGV Development Team. All rights reserved.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// $Id$
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
require WT_ROOT.WT_MODULES_DIR.'googlemap/googlemap.php';
if (file_exists(WT_ROOT.WT_MODULES_DIR.'googlemap/defaultconfig.php')) {
require WT_ROOT.WT_MODULES_DIR.'googlemap/defaultconfig.php';
}
function place_id_to_hierarchy($id) {
$statement=
WT_DB::prepare("SELECT pl_parent_id, pl_place FROM `##placelocation` WHERE pl_id=?");
$arr=array();
while ($id!=0) {
$row=$statement->execute(array($id))->fetchOneRow();
$arr=array($id=>$row->pl_place)+$arr;
$id=$row->pl_parent_id;
}
return $arr;
}
function get_placeid($place) {
$par = explode (",", $place);
$par = array_reverse($par);
$place_id = 0;
for ($i=0; $i<count($par); $i++) {
$par[$i] = trim($par[$i]);
if (empty($par[$i])) $par[$i]="unknown";
$placelist = create_possible_place_names($par[$i], $i+1);
foreach ($placelist as $key => $placename) {
$pl_id=
WT_DB::prepare("SELECT pl_id FROM `##placelocation` WHERE pl_level=? AND pl_parent_id=? AND pl_place LIKE ? ORDER BY pl_place")
->execute(array($i, $place_id, $placename))
->fetchOne();
if (!empty($pl_id)) break;
}
if (empty($pl_id)) break;
$place_id = $pl_id;
}
return $place_id;
}
function get_p_id($place) {
$par = explode (",", $place);
$par = array_reverse($par);
$place_id = 0;
for ($i=0; $i<count($par); $i++) {
$par[$i] = trim($par[$i]);
$placelist = create_possible_place_names($par[$i], $i+1);
foreach ($placelist as $key => $placename) {
$pl_id=
WT_DB::prepare("SELECT p_id FROM `##places` WHERE p_level=? AND p_parent_id=? AND p_file=? AND p_place LIKE ? ORDER BY p_place")
->execute(array($i, $place_id, WT_GED_ID, $placename))
->fetchOne();
if (!empty($pl_id)) break;
}
if (empty($pl_id)) break;
$place_id = $pl_id;
}
return $place_id;
}
function set_placeid_map($level, $parent) {
if (!isset($levelm)) {
$levelm=0;
}
$fullplace = "";
if ($level==0)
$levelm=0;
else {
for ($i=1; $i<=$level; $i++) {
$fullplace .= $parent[$level-$i].", ";
}
$fullplace = substr($fullplace, 0, -2);
$levelm = get_p_id($fullplace);
}
return $levelm;
}
function set_levelm($level, $parent) {
if (!isset($levelm)) {
$levelm=0;
}
$fullplace = "";
if ($level==0)
$levelm=0;
else {
for ($i=1; $i<=$level; $i++) {
if ($parent[$level-$i]!="")
$fullplace .= $parent[$level-$i].", ";
else
$fullplace .= "Unknown, ";
}
$fullplace = substr($fullplace, 0, -2);
$levelm = get_placeid($fullplace);
}
return $levelm;
}
function create_map($placelevels) {
$level = safe_GET('level');
global $GOOGLEMAP_PH_XSIZE, $GOOGLEMAP_PH_YSIZE, $GOOGLEMAP_MAP_TYPE, $TEXT_DIRECTION, $levelm, $plzoom;
// *** ENABLE STREETVIEW *** (boolean) =========================================================
$STREETVIEW = get_module_setting('googlemap', 'GM_USE_STREETVIEW');
// =============================================================================================
$parent = safe_GET('parent');
// create the map
echo '<table class="center" style="margin-top:20px;"><tr valign="top"><td>';
//<!-- start of map display -->
echo '<table><tr valign="top">';
echo '<td class="center" width="200px">';
$levelm = set_levelm($level, $parent);
$latlng =
WT_DB::prepare("SELECT pl_place, pl_id, pl_lati, pl_long, pl_zoom, sv_long, sv_lati, sv_bearing, sv_elevation, sv_zoom FROM `##placelocation` WHERE pl_id=?")
->execute(array($levelm))
->fetch(PDO::FETCH_ASSOC);
if ($STREETVIEW && $level!=0 ) {
echo '<div id="place_map" style=" margin-top: 20px; border:1px solid gray; width: ', $GOOGLEMAP_PH_XSIZE, 'px; height: ', $GOOGLEMAP_PH_YSIZE, 'px;" ';
} else {
echo '<div id="place_map" style="border:1px solid gray; width: ', $GOOGLEMAP_PH_XSIZE, 'px; height: ', $GOOGLEMAP_PH_YSIZE, 'px;" ';
}
echo "background-image: url('", WT_STATIC_URL, "images/loading.gif'); background-position: center; background-repeat: no-repeat; overflow: hidden;\"></div>";
echo '<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>';
echo '</td>';
$plzoom = $latlng['pl_zoom']; // Map zoom level
if (WT_USER_IS_ADMIN) {
$placecheck_url = 'module.php?mod=googlemap&mod_action=admin_placecheck';
if ($parent && isset($parent[0]) ) {
$placecheck_url .= '&country='.$parent[0];
if (isset($parent[1])) {
$placecheck_url .= '&state='.$parent[1];
}
}
$adminplaces_url = 'module.php?mod=googlemap&mod_action=admin_places';
if ($latlng && isset($latlng['pl_id'])) {
$adminplaces_url .= '&parent='.$latlng['pl_id'];
}
echo '</tr><tr><td>';
echo '<a href="module.php?mod=googlemap&mod_action=admin_editconfig">', WT_I18N::translate('Google Maps configuration'), '</a>';
echo ' | ';
echo '<a href="'.$adminplaces_url.'">', WT_I18N::translate('Edit geographic place locations'), '</a>';
echo ' | ';
echo '<a href="'.$placecheck_url.'">', WT_I18N::translate('Place Check'), '</a>';
if (array_key_exists('batch_update', WT_Module::getActiveModules())) {
$placelevels=preg_replace('/, '.WT_I18N::translate('unknown').'/', ', ', $placelevels); // replace ", unknown" with ", "
$placelevels=substr($placelevels, 2); // remove the leading ", "
if ($placelevels) {
$batchupdate_url='module.php?mod=batch_update&mod_action=admin_batch_update&plugin=search_replace_bu_plugin&method=exact&ged='.WT_GEDCOM.'&search='.urlencode($placelevels); // exact match
echo ' | ';
echo '<a href="'.$batchupdate_url.'">', WT_I18N::translate('Batch update'), '</a>';
}
}
}
echo '</td></tr></table>';
echo '</td>';
echo '<td style="margin-left:15px; float:right; ">';
if ($STREETVIEW) {
?>
<script>
function update_sv_params(placeid) {
var svlati = document.getElementById('sv_latiText').value.slice(0, -1);
var svlong = document.getElementById('sv_longText').value.slice(0, -1);
var svbear = document.getElementById('sv_bearText').value.slice(0, -1);
var svelev = document.getElementById('sv_elevText').value.slice(0, -1);
var svzoom = document.getElementById('sv_zoomText').value;
win03 = window.open('module.php?mod=googlemap&mod_action=places_edit&action=update_sv_params&placeid='+placeid+"&"+sessionname+"="+sessionid+
'&svlati='+svlati+
'&svlong='+svlong+
'&svbear='+svbear+
'&svelev='+svelev+
'&svzoom='+svzoom,
'win03', 'top=50, left=50, width=680, height=550, resizable=1, scrollbars=1' );
if (window.focus) {win03.focus();}
}
</script>
<?php
$parent = safe_GET('parent');
global $TBLPREFIX, $pl_lati, $pl_long;
if ($level>=1) {
$pl_lati = str_replace(array('N', 'S', ','), array('', '-', '.'), $latlng['pl_lati']); // WT_placelocation lati
$pl_long = str_replace(array('E', 'W', ','), array('', '-', '.'), $latlng['pl_long']); // WT_placelocation long
// Check if Streetview location parameters are stored in database
$placeid = $latlng['pl_id']; // Placelocation place id
$sv_lat = $latlng['sv_lati']; // StreetView Point of View Latitude
$sv_lng = $latlng['sv_long']; // StreetView Point of View Longitude
$sv_dir = $latlng['sv_bearing']; // StreetView Point of View Direction (degrees from North)
$sv_pitch = $latlng['sv_elevation']; // StreetView Point of View Elevation (+90 to -90 degrees (+=down, -=up)
$sv_zoom = $latlng['sv_zoom']; // StreetView Point of View Zoom (0, 1, 2 or 3)
// Check if Street View Lati/Long are the default of 0 or null, if so use regular Place Lati/Long to set an initial location for the panda ------------
if (($latlng['sv_lati']==null && $latlng['sv_long']==null) || ($latlng['sv_lati']==0 && $latlng['sv_long']==0)) {
$sv_lat = $pl_lati;
$sv_lng = $pl_long;
}
// Set Street View parameters to numeric value if NULL (avoids problem with Google Street View Pane not rendering)
if ($sv_dir==null) {
$sv_dir=0;
}
if ($sv_pitch==null) {
$sv_pitch=0;
}
if ($sv_zoom==null) {
$sv_zoom=1;
}
$_map = WT_I18N::translate('Google Maps');
$_reset = WT_I18N::translate('Reset');
$_streetview = /* I18N: http://en.wikipedia.org/wiki/Google_street_view */ WT_I18N::translate('Google Street View');
?>
<div>
<iframe style="background:transparent; margin-top:-3px; margin-left:2px; width:530px;height:405px;padding:0;border:solid 0px black" src="<?php echo WT_STATIC_URL, WT_MODULES_DIR; ?>googlemap/wt_v3_street_view.php?x=<?php echo $sv_lng; ?>&y=<?php echo $sv_lat; ?>&z=18&t=2&c=1&s=1&b=<?php echo $sv_dir; ?>&p=<?php echo $sv_pitch; ?>&m=<?php echo $sv_zoom; ?>&j=1&k=1&v=1&map=<?php echo $_map; ?>&reset=<?php echo $_reset; ?>&streetview=<?php echo $_streetview; ?>" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"></iframe>
</div>
<?php
$list_latlon = (
WT_Gedcom_Tag::getLabel('LATI')."<input name='sv_latiText' id='sv_latiText' type='text' style='width:42px; background:none; border:none;' value='".$sv_lat."' />".
WT_Gedcom_Tag::getLabel('LONG')."<input name='sv_longText' id='sv_longText' type='text' style='width:42px; background:none; border:none;' value='".$sv_lng."' />".
/* I18N: Compass bearing (in degrees), for street-view mapping */ WT_I18N::translate('Bearing')."<input name='sv_bearText' id='sv_bearText' type='text' style='width:46px; background:none; border:none;' value='".$sv_dir."' />".
/* I18N: Angle of elevation (in degrees), for street-view mapping */ WT_I18N::translate('Elevation')."<input name='sv_elevText' id='sv_elevText' type='text' style='width:30px; background:none; border:none;' value='".$sv_pitch."' />".
WT_I18N::translate('Zoom')."<input name='sv_zoomText' id='sv_zoomText' type='text' style='width:30px; background:none; border:none;' value='".$sv_zoom."' />
");
if (WT_USER_IS_ADMIN) {
echo "<table align=\"center\" style=\"margin-left:6px; border:solid 1px black; width:522px; margin-top:-28px; background:#cccccc; \">";
} else {
echo "<table align=\"center\" style=\"display:none; \">";
}
echo "<tr><td>\n";
echo "<form style=\"text-align:left; margin-left:5px; font:11px verdana; color:blue;\" method=\"post\" action=\"\">";
echo $list_latlon;
echo "<input type=\"submit\" name=\"Submit\" onClick=\"update_sv_params($placeid);\" value=\"", WT_I18N::translate('Save'), "\">";
echo "</form>";
echo "</td></tr>\n";
echo "</table>\n";
}
// Next line puts Place hierarchy on new row -----
echo '</td></tr><tr>';
} // End Streetview window ===================================================================
}
function check_were_am_i($numls, $levelm) {
$where_am_i=place_id_to_hierarchy($levelm);
$i=$numls+1;
if (!isset($levelo)) {
$levelo[0]=0;
}
foreach (array_reverse($where_am_i, true) as $id=>$place2) {
$levelo[$i]=$id;
$i--;
}
return $levelo;
}
function check_place($place_names, $place) {
if ($place == "Unknown") $place="";
if (in_array($place, $place_names)) {
return true;
}
}
function print_how_many_people($level, $parent) {
$stats = new WT_Stats(WT_GEDCOM);
$place_count_indi = 0;
$place_count_fam = 0;
if (!isset($parent[$level-1])) $parent[$level-1]="";
$p_id = set_placeid_map($level, $parent);
$indi = $stats->_statsPlaces('INDI', false, $p_id);
$fam = $stats->_statsPlaces('FAM', false, $p_id);
if (!empty($indi)) {
foreach ($indi as $place) {
$place_count_indi=$place['tot'];
}
}
if (!empty($fam)) {
foreach ($fam as $place) {
$place_count_fam=$place['tot'];
}
}
echo "<br /><br />", WT_I18N::translate('Individuals'), ": ", $place_count_indi, ", ", WT_I18N::translate('Families'), ": ", $place_count_fam;
}
function print_gm_markers($place2, $level, $parent, $levelm, $linklevels, $placelevels, $lastlevel=false) {
global $GOOGLEMAP_COORD, $GOOGLEMAP_PH_MARKER, $GM_DISP_SHORT_PLACE, $GM_DISP_COUNT;
if (($place2['lati'] == NULL) || ($place2['long'] == NULL) || (($place2['lati'] == "0") && ($place2['long'] == "0"))) {
echo 'var icon_type = new google.maps.MarkerImage();\n';
echo 'icon_type.image = "', WT_STATIC_URL, WT_MODULES_DIR, 'googlemap/images/marker_yellow.png";';
echo 'icon_type.shadow = "', WT_STATIC_URL, WT_MODULES_DIR, 'googlemap/images/shadow50.png";';
echo 'icon_type.iconSize = google.maps.Size(20, 34);\n';
echo 'icon_type.shadowSize = google.maps.Size(37, 34);\n';
echo 'var point = new google.maps.LatLng(0, 0);\n';
if ($lastlevel)
echo "var marker = createMarker(point, \"<div class='iwstyle' style='width: 250px;'><a href='?level=", $level, $linklevels, "'><br />";
else {
echo "var marker = createMarker(point, \"<div class='iwstyle' style='width: 250px;'><a href='?level=", ($level+1), $linklevels, "&parent[{$level}]=";
if ($place2['place'] == "Unknown") echo "'><br />";
else echo addslashes($place2['place']), "'><br />";
}
if (($place2["icon"] != NULL) && ($place2['icon'] != "")) {
echo '<img src=\"', WT_STATIC_URL, WT_MODULES_DIR, 'googlemap/', $place2['icon'], '\"> ';
}
if ($lastlevel) {
$placename = substr($placelevels, 2);
if ($place2['place'] == "Unknown") {
if (!$GM_DISP_SHORT_PLACE) {
echo addslashes(substr($placelevels, 2));
} else {
echo WT_I18N::translate('unknown');
}
} else {
if (!$GM_DISP_SHORT_PLACE) {
echo addslashes(substr($placelevels, 2));
} else {
echo addslashes($place2['place']);
}
}
} else {
$placename = $place2['place'].$placelevels;
if ($place2['place'] == "Unknown") {
if (!$GM_DISP_SHORT_PLACE) {
echo addslashes(WT_I18N::translate('unknown').$placelevels);
} else {
echo WT_I18N::translate('unknown');
}
} else {
if (!$GM_DISP_SHORT_PLACE) {
echo addslashes($place2['place'].$placelevels);
} else {
echo addslashes($place2['place']);
}
}
}
echo "</a>";
if ($GM_DISP_COUNT) {
if ($lastlevel) {
print_how_many_people($level, $parent);
} else {
$parent[$level]=$place2['place'];
print_how_many_people($level+1, $parent);
}
}
echo "<br />", WT_I18N::translate('This place has no coordinates');
if (WT_USER_IS_ADMIN)
echo "<br /><a href='module.php?mod=googlemap&mod_action=admin_places&parent=", $levelm, "&display=inactive'>", WT_I18N::translate('Edit geographic location'), "</a>";
echo "</div>\", icon_type, \"", str_replace(array('‎', '‏'), array(WT_UTF8_LRM, WT_UTF8_RLM), addslashes($place2['place'])), "\");\n";
} else {
$lati = str_replace(array('N', 'S', ','), array('', '-', '.'), $place2['lati']);
$long = str_replace(array('E', 'W', ','), array('', '-', '.'), $place2['long']);
//delete leading zero
if ($lati >= 0) {
$lati = abs($lati);
} elseif ($lati < 0) {
$lati = "-".abs($lati);
}
if ($long >= 0) {
$long = abs($long);
} elseif ($long < 0) {
$long = "-".abs($long);
}
// flags by kiwi3685 ---
if (($place2["icon"] == NULL) || ($place2['icon'] == "") || ($GOOGLEMAP_PH_MARKER != "G_FLAG")) {
echo "var icon_type = new google.maps.MarkerImage();\n";
} else {
echo "var icon_type = new google.maps.MarkerImage();\n";
echo ' icon_type.image = "', WT_STATIC_URL, WT_MODULES_DIR, 'googlemap/', $place2['icon'], '";';
echo ' icon_type.shadow = "', WT_STATIC_URL, WT_MODULES_DIR, 'googlemap/images/flag_shadow.png";';
echo " icon_type.iconSize = new google.maps.Size(25, 15);\n";
echo " icon_type.shadowSize = new google.maps.Size(35, 45);\n";
}
echo "var point = new google.maps.LatLng({$lati}, {$long});\n";
if ($lastlevel) {
echo "var marker = createMarker(point, \"<div class='iwstyle' style='width: 250px;'><a href='?level=", $level, $linklevels, "'><br />";
} else {
echo "var marker = createMarker(point, \"<div class='iwstyle' style='width: 250px;'><a href='?level=", ($level+1), $linklevels, "&parent[{$level}]=";
if ($place2['place'] == "Unknown") {
echo "'><br />";
} else {
echo addslashes($place2['place']), "'><br />";
}
}
if (($place2['icon'] != NULL) && ($place2['icon'] != "")) {
echo '<img src=\"', WT_STATIC_URL, WT_MODULES_DIR, 'googlemap/', $place2['icon'], '\"> ';
}
if ($lastlevel) {
$placename = substr($placelevels, 2);
if ($place2['place'] == "Unknown") {
if (!$GM_DISP_SHORT_PLACE) {
echo addslashes(substr($placelevels, 2));
} else {
echo WT_I18N::translate('unknown');
}
} else {
if (!$GM_DISP_SHORT_PLACE) {
echo addslashes(substr($placelevels, 2));
} else {
echo addslashes($place2['place']);
}
}
} else {
$placename = $place2['place'].$placelevels;
if ($place2['place'] == "Unknown") {
if (!$GM_DISP_SHORT_PLACE) {
echo addslashes(WT_I18N::translate('unknown').$placelevels);
} else {
echo WT_I18N::translate('unknown');
}
} else {
if (!$GM_DISP_SHORT_PLACE) {
echo addslashes($place2['place'].$placelevels);
} else {
echo addslashes($place2['place']);
}
}
}
echo "</a>";
if ($GM_DISP_COUNT) {
if ($lastlevel) {
print_how_many_people($level, $parent);
} else {
$parent[$level]=$place2['place'];
print_how_many_people($level+1, $parent);
}
}
$temp=addslashes($place2['place']);
$temp=str_replace(array('‎', '‏'), array(WT_UTF8_LRM, WT_UTF8_RLM), $temp);
if (!$GOOGLEMAP_COORD) {
echo "<br /><br /></div>\", icon_type, \"", $temp, "\");\n";
} else {
echo "<br /><br />", $place2['lati'], ", ", $place2['long'], "</div>\", icon_type, \"", $temp, "\");\n";
}
}
}
function map_scripts($numfound, $level, $parent, $linklevels, $placelevels, $place_names) {
global $GOOGLEMAP_MAP_TYPE, $GM_MAX_NOF_LEVELS, $GOOGLEMAP_PH_WHEEL, $GOOGLEMAP_PH_CONTROLS, $GOOGLEMAP_PH_MARKER, $plzoom;
echo "<script> var numMarkers = '".$numfound."';</script>";
echo "<script> var mapLevel = '".$level."';</script>";
echo "<script> var placezoom = '", $plzoom, "';</script>";
echo '<link type="text/css" href ="', WT_STATIC_URL, WT_MODULES_DIR, 'googlemap/css/googlemap_style.css" rel="stylesheet" />';
?>
<script type="text/javascript">
// <![CDATA[
var infowindow = new google.maps.InfoWindow( {
// size: new google.maps.Size(150,50),
// maxWidth: 600
});
var map_center = new google.maps.LatLng(0,0);
var map = "";
var bounds = new google.maps.LatLngBounds ();
var markers = [];
var gmarkers = [];
var i = 0;
// Create the map and mapOptions
var mapOptions = {
zoom: 8,
center: map_center,
mapTypeId: google.maps.MapTypeId.<?php echo $GOOGLEMAP_MAP_TYPE; ?>, // ROADMAP, SATELLITE, HYBRID, TERRAIN
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU // DEFAULT, DROPDOWN_MENU, HORIZONTAL_BAR
},
navigationControl: true,
navigationControlOptions: {
position: google.maps.ControlPosition.TOP_RIGHT, // BOTTOM, BOTTOM_LEFT, LEFT, TOP, etc
style: google.maps.NavigationControlStyle.SMALL // ANDROID, DEFAULT, SMALL, ZOOM_PAN
},
streetViewControl: false, // Show Pegman or not
scrollwheel: false
};
map = new google.maps.Map(document.getElementById("place_map"), mapOptions);
// Close any infowindow when map is clicked
google.maps.event.addListener(map, 'click', function() {
infowindow.close();
});
// If only one marker, set zoom level to that of place in database
if (mapLevel != 0) {
var pointZoom = placezoom;
}
// Creates a marker whose info window displays the given name
function createMarker(point, html, icon, name) {
// Choose icon and shadow ============
<?php
echo "if (icon.image && $level<=3) {";
echo "if (icon.image!='", WT_STATIC_URL, WT_MODULES_DIR, "googlemap/images/marker_yellow.png') {";
echo 'var iconImage = new google.maps.MarkerImage(icon.image,';
echo 'new google.maps.Size(25, 15),';
echo 'new google.maps.Point(0,0),';
echo 'new google.maps.Point(1, 45));';
echo 'var iconShadow = new google.maps.MarkerImage("', WT_STATIC_URL, WT_MODULES_DIR, 'googlemap/images/flag_shadow.png",';
echo 'new google.maps.Size(35, 45),';
echo 'new google.maps.Point(0,0),';
echo 'new google.maps.Point(1, 45));';
echo " } else { ";
echo 'var iconImage = new google.maps.MarkerImage(icon.image,';
echo 'new google.maps.Size(20, 34),';
echo 'new google.maps.Point(0,0),';
echo 'new google.maps.Point(9, 34));';
echo 'var iconShadow = new google.maps.MarkerImage("http://www.google.com/mapfiles/shadow50.png",';
echo 'new google.maps.Size(37, 34),';
echo 'new google.maps.Point(0,0),';
echo 'new google.maps.Point(9, 34));';
echo "}";
// *** Clickable area of icon - To be refined later *** ===================================
// echo 'var iconShape = {';
// echo 'coord: [9,0,6,1,4,2,2,4,0,8,0,12,1,14,2,16,5,19,7,23,8,26,9,30,9,34,11,34,11,30,12,26,13,24,14,21,16,18,18,16,20,12,20,8,18,4,16,2,15,1,13,0],';
// echo 'type: "poly"';
// echo '};';
echo " } else { ";
echo 'var iconImage = new google.maps.MarkerImage("http://maps.google.com/mapfiles/marker.png",';
echo 'new google.maps.Size(20, 34),';
echo 'new google.maps.Point(0,0),';
echo 'new google.maps.Point(9, 34));';
echo 'var iconShadow = new google.maps.MarkerImage("http://www.google.com/mapfiles/shadow50.png",';
echo 'new google.maps.Size(37, 34),';
echo 'new google.maps.Point(0,0),';
echo 'new google.maps.Point(9, 34));';
// *** Clickable area of icon - To be refined later *** ===================================
// echo 'var iconShape = {';
// echo 'coord: [9,0,6,1,4,2,2,4,0,8,0,12,1,14,2,16,5,19,7,23,8,26,9,30,9,34,11,34,11,30,12,26,13,24,14,21,16,18,18,16,20,12,20,8,18,4,16,2,15,1,13,0],';
// echo 'type: "poly"';
// echo '};';
echo "}";
?>
var posn = new google.maps.LatLng(0,0);
var marker = new google.maps.Marker({
position: point,
icon: iconImage,
shadow: iconShadow,
map: map,
title: name
});
// Show this markers name in the info window when it is clicked
google.maps.event.addListener(marker, 'click', function() {
infowindow.close();
infowindow.setContent(html);
infowindow.open(map, marker);
});
// === Store the tab, category and event info as marker properties ===
marker.mypoint = point;
marker.mytitle = name;
marker.myposn = posn;
gmarkers.push(marker);
bounds.extend(marker.position);
// If only one marker use database place zoom level rather than fitBounds of markers
if (numMarkers > 1) {
map.fitBounds(bounds);
} else {
map.setCenter(bounds.getCenter());
map.setZoom(parseFloat(pointZoom));
}
return marker;
}
<?php
global $GOOGLEMAP_MAX_ZOOM;
$levelm = set_levelm($level, $parent);
if (isset($levelo[0])) $levelo[0]=0;
$numls = count($parent)-1;
$levelo=check_were_am_i($numls, $levelm);
if ($numfound<2 && ($level==1 || !(isset($levelo[($level-1)])))) {
echo "map.maxZoom=6;";
// echo "zoomlevel = map.getBoundsZoomLevel(bounds);\n";
// echo " map.setCenter(new google.maps.LatLng(0, 0), zoomlevel+5);\n";
} else if ($numfound<2 && !isset($levelo[($level-2)])) {
// echo "zoomlevel = map.getBoundsZoomLevel(bounds);\n";
// echo " map.setCenter(new google.maps.LatLng(0, 0), zoomlevel+6);\n";
} else if ($level==2) {
echo "map.maxZoom=10;";
// echo "zoomlevel = map.getBoundsZoomLevel(bounds);\n";
// echo " map.setCenter(new google.maps.LatLng(0, 0), zoomlevel+8);\n";
} else if ($numfound<2 && $level>1) {
// echo "map.maxZoom=".$GOOGLEMAP_MAX_ZOOM.";";
// echo "zoomlevel = map.getBoundsZoomLevel(bounds);\n";
// echo " map.setCenter(new google.maps.LatLng(0, 0), zoomlevel+18);\n";
}
//create markers
if ($numfound==0 && $level>0) {
if (isset($levelo[($level-1)])) { // ** BH not sure yet what this if statement is for ... TODO **
// show the current place on the map
$place = WT_DB::prepare("SELECT pl_id as place_id, pl_place as place, pl_lati as lati, pl_long as `long`, pl_zoom as zoom, pl_icon as icon FROM `##placelocation` WHERE pl_id=?")
->execute(array($levelm))
->fetch(PDO::FETCH_ASSOC);
if ($place) {
// re-calculate the hierarchy information required to display the current place
$thisloc = $parent;
$xx = array_pop($thisloc);
$thislevel = $level-1 ;
$thislinklevels = substr($linklevels,0,strrpos($linklevels,'&'));
if (strpos($placelevels,',',1)) {
$thisplacelevels = substr($placelevels,strpos($placelevels,',',1));
} else {
// this is the top level, remove everything
$thisplacelevels = '';
}
print_gm_markers($place, $thislevel, $thisloc, $place['place_id'], $thislinklevels, $thisplacelevels);
}
}
}
// display any sub-places
$placeidlist=array();
foreach ($place_names as $placename) {
$thisloc = $parent;
$thisloc[] = $placename;
$this_levelm = set_levelm($level+1, $thisloc);
if ($this_levelm) $placeidlist[] = $this_levelm;
}
if ($placeidlist) {
// flip the array (thus removing duplicates)
$placeidlist=array_flip($placeidlist);
// remove entry for parent location
unset($placeidlist[$levelm]);
}
if ($placeidlist) {
// the keys are all we care about (this reverses the earlier array_flip, and ensures there are no "holes" in the array)
$placeidlist=array_keys($placeidlist);
// note: this implode/array_fill code generates one '?' for each entry in the $placeidlist array
$placelist =
WT_DB::prepare('SELECT pl_id as place_id, pl_place as place, pl_lati as lati, pl_long as `long`, pl_zoom as zoom, pl_icon as icon FROM `##placelocation` WHERE pl_id IN ('.implode(',', array_fill(0, count($placeidlist), '?')).')')
->execute($placeidlist)
->fetchAll(PDO::FETCH_ASSOC);
foreach ($placelist as $place) {
print_gm_markers($place, $level, $parent, $place['place_id'], $linklevels, $placelevels);
}
}
//end markers
?>
//]]>
</script>
<?php
}
?>
|