-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.html
15884 lines (15869 loc) · 680 KB
/
data.html
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
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title>World Map</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="markerclusterer_compiled.js"></script>
</head>
<body>
<div id="logo">
<img src="images/logo.png" />
</div>
<br />
<h2>World Map</h2>
<br />
<br />
<div id="menu">
<a href="index.php">Home</a> | <a href="regions.php">Coverage List</a> | <a href="world.php">Coverage Map</a> | <a href="wm.php">CellMapper for Windows Mobile</a> | <a href="an.php">CellMapper for Android</a> | <a href="bb.php">CellMapper for BlackBerry</a> | <a href="visualcell.php">VisualCell for Android</a> | <a href="csv.php">Upload</a> | <a href="faq.php">FAQ</a> | <a href="/mw/">Wiki</a> | <a href="bb/">Forum</a>
</div>
<br />
<br />
<br />
<div id="content">
<script type="text/javascript">
//<![CDATA[
var marker = [];
$(document).ready(function() {
var centre = new google.maps.LatLng(0,0);
var myOptions = {
zoom: 2,
center: centre,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
},
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
marker[0] = new google.maps.Marker({
position: new google.maps.LatLng(34.261795, 108.93743),
map: map,
title: 'Provider 1 coverage of Region 8412'
});
google.maps.event.addListener(marker[0], 'click', function() {
window.open( 'map.php?MCC=1120&MNC=1&LAC=8412');this.setOptions({flat: true});});
marker[1] = new google.maps.Marker({
position: new google.maps.LatLng(55.29789381, 51.99032803),
map: map,
title: 'Provider 1 coverage of Region 0'
});
google.maps.event.addListener(marker[1], 'click', function() {
window.open( 'map.php?MCC=1&MNC=1&LAC=0');this.setOptions({flat: true});});
marker[2] = new google.maps.Marker({
position: new google.maps.LatLng(37.9696394, 23.5333853166667),
map: map,
title: 'Cosmote coverage of Paloukia'
});
google.maps.event.addListener(marker[2], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=1002');this.setOptions({flat: true});});
marker[3] = new google.maps.Marker({
position: new google.maps.LatLng(38.27334286, 21.76218805),
map: map,
title: 'Cosmote coverage of Patra'
});
google.maps.event.addListener(marker[3], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=1701');this.setOptions({flat: true});});
marker[4] = new google.maps.Marker({
position: new google.maps.LatLng(38.005927785887636, 23.781103662321005),
map: map,
title: 'Cosmote coverage of Athina'
});
google.maps.event.addListener(marker[4], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=38,40,1003,1004,1005');this.setOptions({flat: true});});
marker[5] = new google.maps.Marker({
position: new google.maps.LatLng(36.43500086, 28.23167212),
map: map,
title: 'Cosmote coverage of Rodos'
});
google.maps.event.addListener(marker[5], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=1801');this.setOptions({flat: true});});
marker[6] = new google.maps.Marker({
position: new google.maps.LatLng(40.47373045, 25.4899444),
map: map,
title: 'Cosmote coverage of Nisos Samothraki'
});
google.maps.event.addListener(marker[6], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=111');this.setOptions({flat: true});});
marker[7] = new google.maps.Marker({
position: new google.maps.LatLng(41.11658903, 25.39023643),
map: map,
title: 'Cosmote coverage of Komotini'
});
google.maps.event.addListener(marker[7], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=105');this.setOptions({flat: true});});
marker[8] = new google.maps.Marker({
position: new google.maps.LatLng(40.4696867, 23.27289892),
map: map,
title: 'Cosmote coverage of Region 1401'
});
google.maps.event.addListener(marker[8], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=1401');this.setOptions({flat: true});});
marker[9] = new google.maps.Marker({
position: new google.maps.LatLng(38.01161, 23.7066466666667),
map: map,
title: 'Cosmote coverage of Region 31'
});
google.maps.event.addListener(marker[9], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=31');this.setOptions({flat: true});});
marker[10] = new google.maps.Marker({
position: new google.maps.LatLng(40.572706484047174, 22.986242890190386),
map: map,
title: 'Cosmote coverage of Thessaloniki'
});
google.maps.event.addListener(marker[10], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=100,116,117,123,124,128,129,132');this.setOptions({flat: true});});
marker[11] = new google.maps.Marker({
position: new google.maps.LatLng(40.83566244614315, 23.793990161025366),
map: map,
title: 'Cosmote coverage of Egnatia Odos'
});
google.maps.event.addListener(marker[11], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=113,133,135');this.setOptions({flat: true});});
marker[12] = new google.maps.Marker({
position: new google.maps.LatLng(37.76317792, 24.06933532),
map: map,
title: 'Cosmote coverage of Region 14'
});
google.maps.event.addListener(marker[12], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=14');this.setOptions({flat: true});});
marker[13] = new google.maps.Marker({
position: new google.maps.LatLng(40.63401258, 22.93907863),
map: map,
title: 'Cosmote coverage of Region 1102'
});
google.maps.event.addListener(marker[13], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=1102');this.setOptions({flat: true});});
marker[14] = new google.maps.Marker({
position: new google.maps.LatLng(40.59838054, 22.98566901),
map: map,
title: 'Cosmote coverage of Region 1101'
});
google.maps.event.addListener(marker[14], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=1101');this.setOptions({flat: true});});
marker[15] = new google.maps.Marker({
position: new google.maps.LatLng(35.54247421, 24.09192859),
map: map,
title: 'Cosmote coverage of Region 1601'
});
google.maps.event.addListener(marker[15], 'click', function() {
window.open( 'map.php?MCC=202&MNC=1&LAC=1601');this.setOptions({flat: true});});
marker[16] = new google.maps.Marker({
position: new google.maps.LatLng(40.65486, 22.9312233333333),
map: map,
title: 'Wind coverage of Thessaloniki'
});
google.maps.event.addListener(marker[16], 'click', function() {
window.open( 'map.php?MCC=202&MNC=10&LAC=20170');this.setOptions({flat: true});});
marker[17] = new google.maps.Marker({
position: new google.maps.LatLng(37.92931043, 23.75576942),
map: map,
title: 'Wind coverage of Region 11100'
});
google.maps.event.addListener(marker[17], 'click', function() {
window.open( 'map.php?MCC=202&MNC=10&LAC=11100');this.setOptions({flat: true});});
marker[18] = new google.maps.Marker({
position: new google.maps.LatLng(37.9684652166667, 23.76740135),
map: map,
title: 'Wind coverage of Region 11300'
});
google.maps.event.addListener(marker[18], 'click', function() {
window.open( 'map.php?MCC=202&MNC=10&LAC=11300');this.setOptions({flat: true});});
marker[19] = new google.maps.Marker({
position: new google.maps.LatLng(37.96973135, 23.7637687166667),
map: map,
title: 'Wind coverage of Region 10700'
});
google.maps.event.addListener(marker[19], 'click', function() {
window.open( 'map.php?MCC=202&MNC=10&LAC=10700');this.setOptions({flat: true});});
marker[20] = new google.maps.Marker({
position: new google.maps.LatLng(23, 40.6268005371094),
map: map,
title: 'Wind coverage of Region 0'
});
google.maps.event.addListener(marker[20], 'click', function() {
window.open( 'map.php?MCC=202&MNC=10&LAC=0');this.setOptions({flat: true});});
marker[21] = new google.maps.Marker({
position: new google.maps.LatLng(37.9721028, 23.6400248333333),
map: map,
title: 'Wind coverage of Region 10500'
});
google.maps.event.addListener(marker[21], 'click', function() {
window.open( 'map.php?MCC=202&MNC=10&LAC=10500');this.setOptions({flat: true});});
marker[22] = new google.maps.Marker({
position: new google.maps.LatLng(38.01319939407284, 23.75103761816894),
map: map,
title: 'Vodafone coverage of Athina'
});
google.maps.event.addListener(marker[22], 'click', function() {
window.open( 'map.php?MCC=202&MNC=5&LAC=2,6,31,100,6010,6011,6014,6014,6021');this.setOptions({flat: true});});
marker[23] = new google.maps.Marker({
position: new google.maps.LatLng(37.76228308512941, 22.759037004096683),
map: map,
title: 'Vodafone coverage of E65'
});
google.maps.event.addListener(marker[23], 'click', function() {
window.open( 'map.php?MCC=202&MNC=5&LAC=44,6020');this.setOptions({flat: true});});
marker[24] = new google.maps.Marker({
position: new google.maps.LatLng(38.01602296, 23.86663273),
map: map,
title: 'Vodafone coverage of Region 6016'
});
google.maps.event.addListener(marker[24], 'click', function() {
window.open( 'map.php?MCC=202&MNC=5&LAC=6016');this.setOptions({flat: true});});
marker[25] = new google.maps.Marker({
position: new google.maps.LatLng(38.00653617, 23.71270023),
map: map,
title: 'Vodafone coverage of Region 80'
});
google.maps.event.addListener(marker[25], 'click', function() {
window.open( 'map.php?MCC=202&MNC=5&LAC=80');this.setOptions({flat: true});});
marker[26] = new google.maps.Marker({
position: new google.maps.LatLng(37.98912188, 23.73616583),
map: map,
title: 'Vodafone coverage of Region 6022'
});
google.maps.event.addListener(marker[26], 'click', function() {
window.open( 'map.php?MCC=202&MNC=5&LAC=6022');this.setOptions({flat: true});});
marker[27] = new google.maps.Marker({
position: new google.maps.LatLng(38.37714839, 23.45706786),
map: map,
title: 'Vodafone coverage of Region 61'
});
google.maps.event.addListener(marker[27], 'click', function() {
window.open( 'map.php?MCC=202&MNC=5&LAC=61');this.setOptions({flat: true});});
marker[28] = new google.maps.Marker({
position: new google.maps.LatLng(38.36192458, 26.12664397),
map: map,
title: 'Vodafone coverage of Region 6030'
});
google.maps.event.addListener(marker[28], 'click', function() {
window.open( 'map.php?MCC=202&MNC=5&LAC=6030');this.setOptions({flat: true});});
marker[29] = new google.maps.Marker({
position: new google.maps.LatLng(53.17878338, 6.59663889),
map: map,
title: 'Vodafone coverage of Groningen'
});
google.maps.event.addListener(marker[29], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=37,111');this.setOptions({flat: true});});
marker[30] = new google.maps.Marker({
position: new google.maps.LatLng(52.26039649115611, 5.37143541136717),
map: map,
title: 'Vodafone coverage of Amersfoort'
});
google.maps.event.addListener(marker[30], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=20,23,33,101');this.setOptions({flat: true});});
marker[31] = new google.maps.Marker({
position: new google.maps.LatLng(52.42452170052354, 6.19582212404298),
map: map,
title: 'Vodafone coverage of Zwolle'
});
google.maps.event.addListener(marker[31], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=42,109');this.setOptions({flat: true});});
marker[32] = new google.maps.Marker({
position: new google.maps.LatLng(52.70172597, 6.21741433),
map: map,
title: 'Vodafone coverage of Meppel'
});
google.maps.event.addListener(marker[32], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=17');this.setOptions({flat: true});});
marker[33] = new google.maps.Marker({
position: new google.maps.LatLng(52.00302669, 5.80770409),
map: map,
title: 'Vodafone coverage of Arnhem'
});
google.maps.event.addListener(marker[33], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=15,25,106');this.setOptions({flat: true});});
marker[34] = new google.maps.Marker({
position: new google.maps.LatLng(52.27997726148054, 5.018756396577153),
map: map,
title: 'Vodafone coverage of Amsterdam'
});
google.maps.event.addListener(marker[34], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=55,104,108');this.setOptions({flat: true});});
marker[35] = new google.maps.Marker({
position: new google.maps.LatLng(52.11959066774631, 5.25024247923827),
map: map,
title: 'Vodafone coverage of Utrecht'
});
google.maps.event.addListener(marker[35], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=110');this.setOptions({flat: true});});
marker[36] = new google.maps.Marker({
position: new google.maps.LatLng(51.38168955, 6.17033865),
map: map,
title: 'Vodafone coverage of Venlo'
});
google.maps.event.addListener(marker[36], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=112');this.setOptions({flat: true});});
marker[37] = new google.maps.Marker({
position: new google.maps.LatLng(52.59828733, 5.59328392),
map: map,
title: 'Vodafone coverage of Region 40'
});
google.maps.event.addListener(marker[37], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=40');this.setOptions({flat: true});});
marker[38] = new google.maps.Marker({
position: new google.maps.LatLng(52.60233843, 5.61783783),
map: map,
title: 'Vodafone coverage of Region 77'
});
google.maps.event.addListener(marker[38], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=77');this.setOptions({flat: true});});
marker[39] = new google.maps.Marker({
position: new google.maps.LatLng(51.80007584, 5.02465325),
map: map,
title: 'Vodafone coverage of Region 107'
});
google.maps.event.addListener(marker[39], 'click', function() {
window.open( 'map.php?MCC=204&MNC=4&LAC=107');this.setOptions({flat: true});});
marker[40] = new google.maps.Marker({
position: new google.maps.LatLng(51.734812, 3.84841476),
map: map,
title: 'KPN coverage of Scharendijke'
});
google.maps.event.addListener(marker[40], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=4524');this.setOptions({flat: true});});
marker[41] = new google.maps.Marker({
position: new google.maps.LatLng(52.08877924, 5.11389277),
map: map,
title: 'KPN coverage of Utrecht'
});
google.maps.event.addListener(marker[41], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=1070');this.setOptions({flat: true});});
marker[42] = new google.maps.Marker({
position: new google.maps.LatLng(52.49905107, 5.50702844),
map: map,
title: 'KPN coverage of Lelystad'
});
google.maps.event.addListener(marker[42], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=1080');this.setOptions({flat: true});});
marker[43] = new google.maps.Marker({
position: new google.maps.LatLng(51.883273, 4.33342),
map: map,
title: 'KPN coverage of Rotterdam'
});
google.maps.event.addListener(marker[43], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=4463,1040,1030,1020,1010');this.setOptions({flat: true});});
marker[44] = new google.maps.Marker({
position: new google.maps.LatLng(51.48199738, 5.41508261),
map: map,
title: 'KPN coverage of Eindhoven'
});
google.maps.event.addListener(marker[44], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=1090');this.setOptions({flat: true});});
marker[45] = new google.maps.Marker({
position: new google.maps.LatLng(52.25367458, 6.15213626),
map: map,
title: 'KPN coverage of Deventer'
});
google.maps.event.addListener(marker[45], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=1110');this.setOptions({flat: true});});
marker[46] = new google.maps.Marker({
position: new google.maps.LatLng(52.21089351, 5.26893063),
map: map,
title: 'KPN coverage of Amersfoort'
});
google.maps.event.addListener(marker[46], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=4390,4391');this.setOptions({flat: true});});
marker[47] = new google.maps.Marker({
position: new google.maps.LatLng(52.31069025, 5.11896648),
map: map,
title: 'KPN coverage of Amsterdam'
});
google.maps.event.addListener(marker[47], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=1050');this.setOptions({flat: true});});
marker[48] = new google.maps.Marker({
position: new google.maps.LatLng(52.34063545, 6.68684826),
map: map,
title: 'KPN coverage of Region 1130'
});
google.maps.event.addListener(marker[48], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=1130');this.setOptions({flat: true});});
marker[49] = new google.maps.Marker({
position: new google.maps.LatLng(52.33716564, 4.87059329),
map: map,
title: 'KPN coverage of Region 1140'
});
google.maps.event.addListener(marker[49], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=1140');this.setOptions({flat: true});});
marker[50] = new google.maps.Marker({
position: new google.maps.LatLng(52.38922925, 4.8388643),
map: map,
title: 'KPN coverage of Region 1060'
});
google.maps.event.addListener(marker[50], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=1060');this.setOptions({flat: true});});
marker[51] = new google.maps.Marker({
position: new google.maps.LatLng(52.40476888, 4.94713346),
map: map,
title: 'KPN coverage of Region 4359'
});
google.maps.event.addListener(marker[51], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=4359');this.setOptions({flat: true});});
marker[52] = new google.maps.Marker({
position: new google.maps.LatLng(52.38795848, 4.96851551),
map: map,
title: 'KPN coverage of Region 4411'
});
google.maps.event.addListener(marker[52], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=4411');this.setOptions({flat: true});});
marker[53] = new google.maps.Marker({
position: new google.maps.LatLng(51.80016921, 5.02473481),
map: map,
title: 'KPN coverage of Region 4491'
});
google.maps.event.addListener(marker[53], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=4491');this.setOptions({flat: true});});
marker[54] = new google.maps.Marker({
position: new google.maps.LatLng(51.800069, 5.0247354),
map: map,
title: 'KPN coverage of Region 4488'
});
google.maps.event.addListener(marker[54], 'click', function() {
window.open( 'map.php?MCC=204&MNC=8&LAC=4488');this.setOptions({flat: true});});
marker[55] = new google.maps.Marker({
position: new google.maps.LatLng(51.30824487, 4.73237675),
map: map,
title: 'Proximus coverage of Malle'
});
google.maps.event.addListener(marker[55], 'click', function() {
window.open( 'map.php?MCC=206&MNC=1&LAC=1303');this.setOptions({flat: true});});
marker[56] = new google.maps.Marker({
position: new google.maps.LatLng(51.3518478, 4.26058011),
map: map,
title: 'Proximus coverage of Stabroek'
});
google.maps.event.addListener(marker[56], 'click', function() {
window.open( 'map.php?MCC=206&MNC=1&LAC=1302');this.setOptions({flat: true});});
marker[57] = new google.maps.Marker({
position: new google.maps.LatLng(51.19534367, 3.22678933),
map: map,
title: 'Proximus coverage of Brugge'
});
google.maps.event.addListener(marker[57], 'click', function() {
window.open( 'map.php?MCC=206&MNC=1&LAC=1409');this.setOptions({flat: true});});
marker[58] = new google.maps.Marker({
position: new google.maps.LatLng(50.6684283, 4.62128373),
map: map,
title: 'Provider 10 coverage of Region 27300'
});
google.maps.event.addListener(marker[58], 'click', function() {
window.open( 'map.php?MCC=206&MNC=10&LAC=27300');this.setOptions({flat: true});});
marker[59] = new google.maps.Marker({
position: new google.maps.LatLng(50.4399935, 4.36307561),
map: map,
title: 'BASE coverage of Courcelles'
});
google.maps.event.addListener(marker[59], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=10301');this.setOptions({flat: true});});
marker[60] = new google.maps.Marker({
position: new google.maps.LatLng(50.81560648, 3.34578105),
map: map,
title: 'BASE coverage of Kortrijk'
});
google.maps.event.addListener(marker[60], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=501,801');this.setOptions({flat: true});});
marker[61] = new google.maps.Marker({
position: new google.maps.LatLng(51.25824923, 5.45075322),
map: map,
title: 'BASE coverage of Region 261'
});
google.maps.event.addListener(marker[61], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=261');this.setOptions({flat: true});});
marker[62] = new google.maps.Marker({
position: new google.maps.LatLng(50.913991928100586, 3.255375623703003),
map: map,
title: 'BASE coverage of Region 40001'
});
google.maps.event.addListener(marker[62], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=40001');this.setOptions({flat: true});});
marker[63] = new google.maps.Marker({
position: new google.maps.LatLng(50.921008586883545, 3.2133668661117554),
map: map,
title: 'BASE coverage of Region 1404'
});
google.maps.event.addListener(marker[63], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=1404');this.setOptions({flat: true});});
marker[64] = new google.maps.Marker({
position: new google.maps.LatLng(50.852643, 4.442254),
map: map,
title: 'BASE coverage of Region 303'
});
google.maps.event.addListener(marker[64], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=303');this.setOptions({flat: true});});
marker[65] = new google.maps.Marker({
position: new google.maps.LatLng(51.19354248046875, 4.640452265739441),
map: map,
title: 'BASE coverage of Region 252'
});
google.maps.event.addListener(marker[65], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=252');this.setOptions({flat: true});});
marker[66] = new google.maps.Marker({
position: new google.maps.LatLng(50.91153864, 4.34405427),
map: map,
title: 'BASE coverage of Region 302'
});
google.maps.event.addListener(marker[66], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=302');this.setOptions({flat: true});});
marker[67] = new google.maps.Marker({
position: new google.maps.LatLng(51.08424254, 4.44271737),
map: map,
title: 'BASE coverage of Region 251'
});
google.maps.event.addListener(marker[67], 'click', function() {
window.open( 'map.php?MCC=206&MNC=20&LAC=251');this.setOptions({flat: true});});
marker[68] = new google.maps.Marker({
position: new google.maps.LatLng(50.852643, 4.442254),
map: map,
title: 'Provider 200 coverage of Region 303'
});
google.maps.event.addListener(marker[68], 'click', function() {
window.open( 'map.php?MCC=206&MNC=200&LAC=303');this.setOptions({flat: true});});
marker[69] = new google.maps.Marker({
position: new google.maps.LatLng(50.21927473, 3.15189613),
map: map,
title: 'Orange coverage of Haynecourt'
});
google.maps.event.addListener(marker[69], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=25346');this.setOptions({flat: true});});
marker[70] = new google.maps.Marker({
position: new google.maps.LatLng(50.07967913, 3.3490829),
map: map,
title: 'Orange coverage of Walincourt-Selvigny'
});
google.maps.event.addListener(marker[70], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=4613');this.setOptions({flat: true});});
marker[71] = new google.maps.Marker({
position: new google.maps.LatLng(44.83668293, 0.22162685),
map: map,
title: 'Orange coverage of Sainte Foy la Grande'
});
google.maps.event.addListener(marker[71], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=1542,1551');this.setOptions({flat: true});});
marker[72] = new google.maps.Marker({
position: new google.maps.LatLng(48.90035246, 2.3810011),
map: map,
title: 'Orange coverage of Paris'
});
google.maps.event.addListener(marker[72], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=257,1026,38659,38658,38672');this.setOptions({flat: true});});
marker[73] = new google.maps.Marker({
position: new google.maps.LatLng(47.67168336, -2.99438784),
map: map,
title: 'Orange coverage of Auray'
});
google.maps.event.addListener(marker[73], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=25365');this.setOptions({flat: true});});
marker[74] = new google.maps.Marker({
position: new google.maps.LatLng(48.81385948, 1.94694012),
map: map,
title: 'Orange coverage of Plaisir'
});
google.maps.event.addListener(marker[74], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=38664');this.setOptions({flat: true});});
marker[75] = new google.maps.Marker({
position: new google.maps.LatLng(44.55250388, -0.33891606),
map: map,
title: 'Orange coverage of Langon'
});
google.maps.event.addListener(marker[75], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=1540');this.setOptions({flat: true});});
marker[76] = new google.maps.Marker({
position: new google.maps.LatLng(45.76890363, 3.1288816),
map: map,
title: 'Orange coverage of Clermont-Ferrand'
});
google.maps.event.addListener(marker[76], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=2055');this.setOptions({flat: true});});
marker[77] = new google.maps.Marker({
position: new google.maps.LatLng(48.11518299, -1.65161198),
map: map,
title: 'Orange coverage of Rennes'
});
google.maps.event.addListener(marker[77], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=25351');this.setOptions({flat: true});});
marker[78] = new google.maps.Marker({
position: new google.maps.LatLng(48.52787997, 2.65519366),
map: map,
title: 'Orange coverage of Melun'
});
google.maps.event.addListener(marker[78], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=38656');this.setOptions({flat: true});});
marker[79] = new google.maps.Marker({
position: new google.maps.LatLng(48.61274742, 2.48931986),
map: map,
title: 'Orange coverage of Region 38671'
});
google.maps.event.addListener(marker[79], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=38671');this.setOptions({flat: true});});
marker[80] = new google.maps.Marker({
position: new google.maps.LatLng(48.86400768, 2.22065836),
map: map,
title: 'Orange coverage of Region 24832'
});
google.maps.event.addListener(marker[80], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=24832');this.setOptions({flat: true});});
marker[81] = new google.maps.Marker({
position: new google.maps.LatLng(48.71452491921773, 2.202496217617986),
map: map,
title: 'Orange coverage of Region 38662'
});
google.maps.event.addListener(marker[81], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=38662');this.setOptions({flat: true});});
marker[82] = new google.maps.Marker({
position: new google.maps.LatLng(46.9893421, -1.80248622),
map: map,
title: 'Orange coverage of Region 6403'
});
google.maps.event.addListener(marker[82], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=6403');this.setOptions({flat: true});});
marker[83] = new google.maps.Marker({
position: new google.maps.LatLng(46.98933385, -1.80255206),
map: map,
title: 'Orange coverage of Region 25358'
});
google.maps.event.addListener(marker[83], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=25358');this.setOptions({flat: true});});
marker[84] = new google.maps.Marker({
position: new google.maps.LatLng(47.1198246, -1.76579356),
map: map,
title: 'Orange coverage of Region 25373'
});
google.maps.event.addListener(marker[84], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=25373');this.setOptions({flat: true});});
marker[85] = new google.maps.Marker({
position: new google.maps.LatLng(47.17450496, -1.61211303),
map: map,
title: 'Orange coverage of Region 25348'
});
google.maps.event.addListener(marker[85], 'click', function() {
window.open( 'map.php?MCC=208&MNC=1&LAC=25348');this.setOptions({flat: true});});
marker[86] = new google.maps.Marker({
position: new google.maps.LatLng(42.56179952, 8.74854649),
map: map,
title: 'SFR coverage of Calvi'
});
google.maps.event.addListener(marker[86], 'click', function() {
window.open( 'map.php?MCC=208&MNC=10&LAC=49601');this.setOptions({flat: true});});
marker[87] = new google.maps.Marker({
position: new google.maps.LatLng(48.1494371333333, -1.77914536666667),
map: map,
title: 'SFR coverage of Pace'
});
google.maps.event.addListener(marker[87], 'click', function() {
window.open( 'map.php?MCC=208&MNC=10&LAC=60023');this.setOptions({flat: true});});
marker[88] = new google.maps.Marker({
position: new google.maps.LatLng(48.88406827, 2.31280848),
map: map,
title: 'SFR coverage of Paris'
});
google.maps.event.addListener(marker[88], 'click', function() {
window.open( 'map.php?MCC=208&MNC=10&LAC=29702');this.setOptions({flat: true});});
marker[89] = new google.maps.Marker({
position: new google.maps.LatLng(7, 44.8794617951663),
map: map,
title: 'SFR coverage of Region 18122'
});
google.maps.event.addListener(marker[89], 'click', function() {
window.open( 'map.php?MCC=208&MNC=10&LAC=18122');this.setOptions({flat: true});});
marker[90] = new google.maps.Marker({
position: new google.maps.LatLng(8, 45.1098701917978),
map: map,
title: 'SFR coverage of Region 3522'
});
google.maps.event.addListener(marker[90], 'click', function() {
window.open( 'map.php?MCC=208&MNC=10&LAC=3522');this.setOptions({flat: true});});
marker[91] = new google.maps.Marker({
position: new google.maps.LatLng(11, 45.0699771655572),
map: map,
title: 'SFR coverage of Region 5220'
});
google.maps.event.addListener(marker[91], 'click', function() {
window.open( 'map.php?MCC=208&MNC=10&LAC=5220');this.setOptions({flat: true});});
marker[92] = new google.maps.Marker({
position: new google.maps.LatLng(47.20655532, -0.71077443),
map: map,
title: 'Bouygues coverage of Chemille'
});
google.maps.event.addListener(marker[92], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20351');this.setOptions({flat: true});});
marker[93] = new google.maps.Marker({
position: new google.maps.LatLng(48.78573825, 2.45159587),
map: map,
title: 'Bouygues coverage of Creteil'
});
google.maps.event.addListener(marker[93], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20031');this.setOptions({flat: true});});
marker[94] = new google.maps.Marker({
position: new google.maps.LatLng(48.41073693, 2.95766751),
map: map,
title: 'Bouygues coverage of Monterau-Fault-Yonne'
});
google.maps.event.addListener(marker[94], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20631');this.setOptions({flat: true});});
marker[95] = new google.maps.Marker({
position: new google.maps.LatLng(48.24633258, 3.61873981),
map: map,
title: 'Bouygues coverage of Troyes'
});
google.maps.event.addListener(marker[95], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=111,461,20411');this.setOptions({flat: true});});
marker[96] = new google.maps.Marker({
position: new google.maps.LatLng(48.78481998, 2.39567056),
map: map,
title: 'Bouygues coverage of Paris'
});
google.maps.event.addListener(marker[96], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=1,54,98,253,20251,20211');this.setOptions({flat: true});});
marker[97] = new google.maps.Marker({
position: new google.maps.LatLng(45.33292969, 4.32372777),
map: map,
title: 'Bouygues coverage of Saint-Just-Maimont'
});
google.maps.event.addListener(marker[97], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20611');this.setOptions({flat: true});});
marker[98] = new google.maps.Marker({
position: new google.maps.LatLng(48.81536778, 2.62480258),
map: map,
title: 'Bouygues coverage of Emerainville'
});
google.maps.event.addListener(marker[98], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=190');this.setOptions({flat: true});});
marker[99] = new google.maps.Marker({
position: new google.maps.LatLng(48.30582795030685, 3.2943211306152165),
map: map,
title: 'Bouygues coverage of Sens'
});
google.maps.event.addListener(marker[99], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=117,20271');this.setOptions({flat: true});});
marker[100] = new google.maps.Marker({
position: new google.maps.LatLng(45.76094297, 4.86005888),
map: map,
title: 'Bouygues coverage of Villeurbanne'
});
google.maps.event.addListener(marker[100], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20041');this.setOptions({flat: true});});
marker[101] = new google.maps.Marker({
position: new google.maps.LatLng(50.68562552, 3.06099352),
map: map,
title: 'Bouygues coverage of Lille'
});
google.maps.event.addListener(marker[101], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20111');this.setOptions({flat: true});});
marker[102] = new google.maps.Marker({
position: new google.maps.LatLng(45.88857174, 4.80443647),
map: map,
title: 'Bouygues coverage of Lyon'
});
google.maps.event.addListener(marker[102], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20321');this.setOptions({flat: true});});
marker[103] = new google.maps.Marker({
position: new google.maps.LatLng(49.85948025, 2.83207452),
map: map,
title: 'Bouygues coverage of Region 463'
});
google.maps.event.addListener(marker[103], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=463');this.setOptions({flat: true});});
marker[104] = new google.maps.Marker({
position: new google.maps.LatLng(46.25975959, 4.82500067),
map: map,
title: 'Bouygues coverage of Region 239'
});
google.maps.event.addListener(marker[104], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=239');this.setOptions({flat: true});});
marker[105] = new google.maps.Marker({
position: new google.maps.LatLng(46.98783424, 4.4670618),
map: map,
title: 'Bouygues coverage of Region 116'
});
google.maps.event.addListener(marker[105], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=116');this.setOptions({flat: true});});
marker[106] = new google.maps.Marker({
position: new google.maps.LatLng(49.85324494, 2.83108514),
map: map,
title: 'Bouygues coverage of Region 20551'
});
google.maps.event.addListener(marker[106], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20551');this.setOptions({flat: true});});
marker[107] = new google.maps.Marker({
position: new google.maps.LatLng(50.76467995, 3.12355243),
map: map,
title: 'Bouygues coverage of Region 39'
});
google.maps.event.addListener(marker[107], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=39');this.setOptions({flat: true});});
marker[108] = new google.maps.Marker({
position: new google.maps.LatLng(45.01421468, 6.12483846),
map: map,
title: 'Bouygues coverage of Region 20141'
});
google.maps.event.addListener(marker[108], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20141');this.setOptions({flat: true});});
marker[109] = new google.maps.Marker({
position: new google.maps.LatLng(47.40340823, 5.13004651),
map: map,
title: 'Bouygues coverage of Region 227'
});
google.maps.event.addListener(marker[109], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=227');this.setOptions({flat: true});});
marker[110] = new google.maps.Marker({
position: new google.maps.LatLng(48.64269836, 5.82383065),
map: map,
title: 'Bouygues coverage of Region 20521'
});
google.maps.event.addListener(marker[110], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20521');this.setOptions({flat: true});});
marker[111] = new google.maps.Marker({
position: new google.maps.LatLng(43.2323063390227, 5.43740980074661),
map: map,
title: 'Bouygues coverage of Region 20061'
});
google.maps.event.addListener(marker[111], 'click', function() {
window.open( 'map.php?MCC=208&MNC=20&LAC=20061');this.setOptions({flat: true});});
marker[112] = new google.maps.Marker({
position: new google.maps.LatLng(56.219775, 43.200315),
map: map,
title: 'Provider 48 coverage of Region 15255'
});
google.maps.event.addListener(marker[112], 'click', function() {
window.open( 'map.php?MCC=21232&MNC=48&LAC=15255');this.setOptions({flat: true});});
marker[113] = new google.maps.Marker({
position: new google.maps.LatLng(43.4640433333333, -7.04780166666667),
map: map,
title: 'Vodafone coverage of Vegadeo'
});
google.maps.event.addListener(marker[113], 'click', function() {
window.open( 'map.php?MCC=214&MNC=1&LAC=61363');this.setOptions({flat: true});});
marker[114] = new google.maps.Marker({
position: new google.maps.LatLng(42.58537837, -8.78693339),
map: map,
title: 'Vodafone coverage of Region 65051'
});
google.maps.event.addListener(marker[114], 'click', function() {
window.open( 'map.php?MCC=214&MNC=1&LAC=65051');this.setOptions({flat: true});});
marker[115] = new google.maps.Marker({
position: new google.maps.LatLng(41.65211017, -0.86984583),
map: map,
title: 'Vodafone coverage of Region 4250'
});
google.maps.event.addListener(marker[115], 'click', function() {
window.open( 'map.php?MCC=214&MNC=1&LAC=4250');this.setOptions({flat: true});});
marker[116] = new google.maps.Marker({
position: new google.maps.LatLng(38.24598899, -1.00323543),
map: map,
title: 'Orange coverage of Region 15001'
});
google.maps.event.addListener(marker[116], 'click', function() {
window.open( 'map.php?MCC=214&MNC=3&LAC=15001');this.setOptions({flat: true});});
marker[117] = new google.maps.Marker({
position: new google.maps.LatLng(42.22262293, -8.63231721),
map: map,
title: 'Orange coverage of Region 13004'
});
google.maps.event.addListener(marker[117], 'click', function() {
window.open( 'map.php?MCC=214&MNC=3&LAC=13004');this.setOptions({flat: true});});
marker[118] = new google.maps.Marker({
position: new google.maps.LatLng(42.22247283, -8.63230972),
map: map,
title: 'Orange coverage of Region 33004'
});
google.maps.event.addListener(marker[118], 'click', function() {
window.open( 'map.php?MCC=214&MNC=3&LAC=33004');this.setOptions({flat: true});});
marker[119] = new google.maps.Marker({
position: new google.maps.LatLng(42.24740623, -8.65970177),
map: map,
title: 'Orange coverage of Region 13110'
});
google.maps.event.addListener(marker[119], 'click', function() {
window.open( 'map.php?MCC=214&MNC=3&LAC=13110');this.setOptions({flat: true});});
marker[120] = new google.maps.Marker({
position: new google.maps.LatLng(41.9709015, -1.6603825),
map: map,
title: 'movistar coverage of Barillas'
});
google.maps.event.addListener(marker[120], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=3160');this.setOptions({flat: true});});
marker[121] = new google.maps.Marker({
position: new google.maps.LatLng(41.65607804, -0.90523296),
map: map,
title: 'movistar coverage of Zaragoza'
});
google.maps.event.addListener(marker[121], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=5062');this.setOptions({flat: true});});
marker[122] = new google.maps.Marker({
position: new google.maps.LatLng(40.21883748, -3.66026763),
map: map,
title: 'movistar coverage of Region 2834'
});
google.maps.event.addListener(marker[122], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=2834');this.setOptions({flat: true});});
marker[123] = new google.maps.Marker({
position: new google.maps.LatLng(40.28728091, -4.00650328),
map: map,
title: 'movistar coverage of Region 2868'
});
google.maps.event.addListener(marker[123], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=2868');this.setOptions({flat: true});});
marker[124] = new google.maps.Marker({
position: new google.maps.LatLng(40.42703027, -3.60461796),
map: map,
title: 'movistar coverage of Region 2801'
});
google.maps.event.addListener(marker[124], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=2801');this.setOptions({flat: true});});
marker[125] = new google.maps.Marker({
position: new google.maps.LatLng(38.24589333, -1.00364716),
map: map,
title: 'movistar coverage of Region 3005'
});
google.maps.event.addListener(marker[125], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=3005');this.setOptions({flat: true});});
marker[126] = new google.maps.Marker({
position: new google.maps.LatLng(38.24549919, -0.99735657),
map: map,
title: 'movistar coverage of Region 3060'
});
google.maps.event.addListener(marker[126], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=3060');this.setOptions({flat: true});});
marker[127] = new google.maps.Marker({
position: new google.maps.LatLng(38.26290354, -1.01884968),
map: map,
title: 'movistar coverage of Region 360'
});
google.maps.event.addListener(marker[127], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=360');this.setOptions({flat: true});});
marker[128] = new google.maps.Marker({
position: new google.maps.LatLng(38.28748704, -0.97538661),
map: map,
title: 'movistar coverage of Region 301'
});
google.maps.event.addListener(marker[128], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=301');this.setOptions({flat: true});});
marker[129] = new google.maps.Marker({
position: new google.maps.LatLng(39.8742811833333, 3.01194571666667),
map: map,
title: 'movistar coverage of Region 761'
});
google.maps.event.addListener(marker[129], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=761');this.setOptions({flat: true});});
marker[130] = new google.maps.Marker({
position: new google.maps.LatLng(39.8580310666667, 3.0109911),
map: map,
title: 'movistar coverage of Region 717'
});
google.maps.event.addListener(marker[130], 'click', function() {
window.open( 'map.php?MCC=214&MNC=7&LAC=717');this.setOptions({flat: true});});
marker[131] = new google.maps.Marker({
position: new google.maps.LatLng(47.83252756, 19.008062),
map: map,
title: 'Telenor coverage of Kismaros'
});
google.maps.event.addListener(marker[131], 'click', function() {
window.open( 'map.php?MCC=216&MNC=1&LAC=3,207');this.setOptions({flat: true});});
marker[132] = new google.maps.Marker({
position: new google.maps.LatLng(47.52430797, 19.10957738),
map: map,
title: 'Telenor coverage of Region 29'
});
google.maps.event.addListener(marker[132], 'click', function() {
window.open( 'map.php?MCC=216&MNC=1&LAC=29');this.setOptions({flat: true});});
marker[133] = new google.maps.Marker({
position: new google.maps.LatLng(47.56895062847926, 19.056580381295646),
map: map,
title: 'Provider 30 coverage of Region 1200'
});
google.maps.event.addListener(marker[133], 'click', function() {
window.open( 'map.php?MCC=216&MNC=30&LAC=1200');this.setOptions({flat: true});});
marker[134] = new google.maps.Marker({
position: new google.maps.LatLng(47.57011644, 18.9466836),
map: map,
title: 'Provider 30 coverage of Region 93'
});
google.maps.event.addListener(marker[134], 'click', function() {
window.open( 'map.php?MCC=216&MNC=30&LAC=93');this.setOptions({flat: true});});
marker[135] = new google.maps.Marker({
position: new google.maps.LatLng(47.56704417210142, 19.05021169114592),
map: map,
title: 'Provider 30 coverage of Region 50'
});
google.maps.event.addListener(marker[135], 'click', function() {
window.open( 'map.php?MCC=216&MNC=30&LAC=50');this.setOptions({flat: true});});
marker[136] = new google.maps.Marker({
position: new google.maps.LatLng(46.28412867, 19.49513844),