summaryrefslogtreecommitdiff
path: root/protected/extensions/egmap/EGMap.php
blob: 3b3dd6cb24c7888895a08a8911c7172af90bb7b5 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
<?php

/**
 * 
 * EGMap Google Map class
 * Inspired from
 * the amazing work of Symphony
 * GMap class. 
 * 
 * I try to keep comments of the authors to
 * functions
 * 
 * @link https://github.com/fabriceb/sfEasyGMapPlugin
 * 
 * @author Antonio Ramirez Cobos
 * @link http://www.ramirezcobos.com
 * 
 * @copyright 
 * info as this library is a modified version of Fabrice Bernhard 
 * 
 * Copyright (c) 2008 Fabrice Bernhard
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software 
 * and associated documentation files (the "Software"), to deal in the Software without restriction, 
 * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 
 * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 
 * subject to the following conditions:
 * The above copyright notice and this permission notice shall be included in all copies or substantial 
 * portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 * LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
 * NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE 
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 */
class EGMap extends EGMapBase {
	// This map type displays a normal street map.
	const TYPE_ROADMAP = 'google.maps.MapTypeId.ROADMAP';
	// This map type displays maps with physical features such as terrain and vegetation.
	const TYPE_TERRAIN = 'google.maps.MapTypeId.TERRAIN';
	// This map type displays a transparent layer of major streets on satellite images.
	const TYPE_HYBRID = 'google.maps.MapTypeId.HYBRID';
	// This map type displays satellite images.
	const TYPE_SATELLITE = 'google.maps.MapTypeId.SATELLITE';

	// displays the array of controls as buttons in a horizontal bar as is shown on Google Maps.
	const MAPTYPECONTROL_STYLE_HORIZONTAL_BAR = 'google.maps.MapTypeControlStyle.HORIZONTAL_BAR';
	// displays a single button control allowing you to select the map type via a dropdown menu.
	const MAPTYPECONTROL_STYLE_DROPDOWN_MENU = 'google.maps.MapTypeControlStyle.DROPDOWN_MENU';
	// displays the "default" behavior, which depends on screen size and may change in future versions of the API
	const MAPTYPECONTROL_STYLE_DEFAULT = 'google.maps.MapTypeControlStyle.DEFAULT';

	// displays a mini-zoom control, consisting of only + and - buttons. This 
	// style is appropriate for small maps. On touch devices, this control displays 
	// as + and - buttons that are responsive to touch 
	const ZOOMCONTROL_STYLE_SMALL = 'google.maps.ZoomControlStyle.SMALL';
	// displays the standard zoom slider control. On touch devices, this control 
	// displays as + and - buttons that are responsive to touch events.
	const ZOOMCONTROL_STYLE_LARGE = 'google.maps.ZoomControlStyle.LARGE';
	// picks an appropriate zoom control based on the map's size and the device on 
	// which the map is running.
	const ZOOMCONTROL_STYLE_DEFAULT = 'google.maps.ZoomControlStyle.DEFAULT';

	/**
	 * 
	 * Available plugins
	 * @var array
	 */
	private $plugins = array(
		'EGMapMarkerWithLabel' => array('js' => array('markerwithlabel_packed.js'), 'flag' => false),
		'EGMapKeyDragZoom' => array('js' => array('keydragzoom_packed.js'), 'flag' => false),
		'EGMapMarkerClusterer' => array('js' => array('markerclusterer_packed.js'), 'flag' => false),
		'EGMapLatLonControl' => array('js' => array('latloncontrol.js'), 'flag' => false),
		'EGMapKMLService' => array('js' => array('geoxml3.js'), 'flag' => false),
		'EGMapInfoBox' => array('js'=> array('infobox_packed.js'), 'flag'=> false)
	);

	/**
	 * 
	 * Folder reference to the registered plugin assets
	 * @var string
	 */
	private $pluginDir = null;

	/**
	 * 
	 * HTML document Id
	 * @var string
	 */
	private $_containerId;

	/**
	 * 
	 * Container HTML attributes 
	 * @var array
	 */
	private $_htmlOptions = array();

	/**
	 * 
	 * Container CSS options
	 * <pre>
	 * 	array('width'=>'512px','height'=>'512px');
	 * </pre>
	 * @var array
	 */
	private $_styleOptions = array('width' => '512px', 'height' => '512px');

	/**
	 * 
	 * default Google Map Options
	 * @var array
	 */
	protected $options = array(
		// boolean  If true, do not clear the contents of the Map div.  
		'noClear ' => null,
		// Enables/disables zoom and center on double click. true by default.
		'disableDoubleClickZoom' => null,
		// string Color used for the background of the Map div. This color will be visible when tiles have not yet loaded as a user pans.  
		'backgroundColor' => null,
		// string The name or url of the cursor to display on a draggable object.  
		'draggableCursor' => null,
		// string The name or url of the cursor to display when an object is dragging.  
		'draggingCursor' => null,
		// boolean If false, prevents the map from being dragged. Dragging is enabled by default.  
		'draggable' => null,
		// boolean If true, enables scrollwheel zooming on the map. The scrollwheel is disabled by default.  
		'scrollwheel' => null,
		// boolean If false, prevents the map from being controlled by the keyboard. Keyboard shortcuts are enabled by default.  
		'keyboardShortcuts' => null,
		// LatLng The initial Map center. Required.  
		'center' => null,
		// number The initial Map zoom level. Required.  
		'zoom' => null,
		// The maximum zoom level which will be displayed on the map. If omitted, or set to 
		// null, the maximum zoom from the current map type is used instead.
		'maxZoom' => null,
		// The minimum zoom level which will be displayed on the map. If omitted, or set to 
		// null, the minimum zoom from the current map type is used instead.
		'minZoom' => null,
		// The enabled/disabled state of the zoom control.
		// true by default
		'zoomControl' => null,
		// http://code.google.com/intl/en-EN/apis/maps/documentation/javascript/reference.html#ZoomControlStyle
		'zoomControlStyle' => null,
		// Of type named array
		// http://code.google.com/intl/en-EN/apis/maps/documentation/javascript/reference.html#ZoomControlOptions
		'zoomControlOptions' => null,
		// The initial enabled/disabled state of the Street View pegman control.
		'streetViewControl' => null,
		// The initial display options for the Street View pegman control.
		// Of type named array
		// http://code.google.com/intl/en-EN/apis/maps/documentation/javascript/reference.html#streetViewControlOptions
		'streetViewControlOptions' => null,
		// string The initial Map mapTypeId. Required.  
		'mapTypeId' => self::TYPE_ROADMAP,
		// boolean Enables/disables all default UI. May be overridden individually.  
		'disableDefaultUI' => null,
		// boolean The initial enabled/disabled state of the Map type control.  
		'mapTypeControl' => null,
		// MapTypeControl options The initial display options for the Map type control.  
		// Of type named array 
		// http://code.google.com/intl/en-EN/apis/maps/documentation/javascript/reference.html#MapTypeControlOptions
		'mapTypeControlOptions' => null,
		// The enabled/disabled state of the pan control.
		'panControl' => null,
		// The display options for the pan control.
		// http://code.google.com/intl/en-EN/apis/maps/documentation/javascript/reference.html#PanControlOptions
		'panControlOptions' => null,
		// boolean The initial enabled/disabled state of the scale control.  
		'scaleControl' => null,
		// ScaleControl options The initial display options for the scale control.  
		// http://code.google.com/intl/en-EN/apis/maps/documentation/javascript/reference.html#ScaleControlOptions
		// Of type named array
		'scaleControlOptions' => null,
		// boolean The initial enabled/disabled state of the navigation control.  
		'navigationControl' => null,
		// NavigationControl options The initial display options for the navigation control.  
		// http://code.google.com/intl/en-EN/apis/maps/documentation/javascript/3.2/reference.html#NavigationControlOptions
		// Of type named array
		'navigationControlOptions' => null
	);

	/**
	 * 
	 * Where the map should be appended to
	 * (refer to registerMap Script)
	 * It can be any valid javascript #id identifier
	 */
	private $_appendTo = null;

	/**
	 * 
	 * If enabled will hold a reference to a 
	 * EGMapKeyDragZoom object
	 * @var EGMapKeyDragZoom
	 */
	private $_keyDrag = null;

	/**
	 * 
	 * If enabled will hold a reference to a 
	 * EGMapClusteredManager object
	 */
	private $_markerClusterer = null;

	/**
	 * 
	 * If enabled will hold a reference to a 
	 * EGMapLatLonControl object
	 */
	private $_latLonControl = null;

	/**
	 * 
	 * If enabled will hold a reference to a 
	 * EGMapKMLService object
	 */
	private $_kmlService = null;

	/**
	 * @todo replace following variables to
	 * a CMap object with CTypedList | CTypedMap Collections
	 * $resources = new CMap()
	 * $resources['markers'] = new CTypedList('EGMapMarker');
	 * $resources['variables'] = new CMap();
	 * $resources['events']
	 */
	protected $resources;

	/**
	 * the interface to the Google Maps API web service
	 */
	protected $gMapClient = null;

	/**
	 * Constructs a Google Map PHP object
	 *
	 * @param array $options Google Map Options
	 * @param array $htmlOptions Container HTML attributes
	 */
	public function __construct($options=array(), $htmlOptions=array())
	{

		$this->resources = new CMap();

		$this->setOptions($options);
		$this->setHtmlOptions($htmlOptions);

		$this->gMapClient = new EGMapClient();
	}

	/**
	 * 
	 * Sets the HTML attributes of the container
	 * @param array $options
	 */
	public function setHtmlOptions($options)
	{
		if (is_scalar($options))
			return;
		$this->_htmlOptions = array_merge($this->_htmlOptions, $options);
	}

	/**
	 * 
	 * Returns the HTML attributes of the container
	 * @return array
	 */
	public function getHtmlOptions()
	{
		return $this->_htmlOptions;
	}

	/**
	 * 
	 * Sets Google Map Options
	 * @param array $options
	 * 
	 */
	public function setOptions($options)
	{
		$this->options = CMap::mergeArray($this->options, $options);
	}

	/**
	 * 
	 * Returns the Google API key
	 * @see EGMapClient
	 * @return string $key
	 */
	public function getAPIKey()
	{
		return $this->getGMapClient()->getAPIKey();
	}

	/**
	 * 
	 * Sets a Google API key for a specific domain
	 * @param string $domain
	 * @param string $key
	 */
	public function setAPIKey($domain, $key)
	{
		$this->getGMapClient()->setAPIKey($domain, $key, true);
	}

	/**
	 * Gets an instance of the interface to the Google Map web geocoding service
	 *
	 * @return EGMapClient
	 */
	public function getGMapClient()
	{
		if (null === $this->gMapClient)
			$this->gMapClient = new EGMapClient();

		return $this->gMapClient;
	}

	/**
	 * Sets an instance of the interface to the Google Map web geocoding service
	 *
	 * @param EGMapClient
	 */
	public function setGMapClient($gMapClient)
	{
		$this->gMapClient = $gMapClient;
	}

	/**
	 * Geocodes an address
	 * @param string $address
	 * @return GMapGeocodedAddress
	 * @author Fabrice Bernhard
	 */
	public function geocode($address)
	{
		$address = trim($address);

		$gMapGeocodedAddress = new EGMapGeocodedAddress($address);
		$accuracy = $gMapGeocodedAddress->geocode($this->getGMapClient());

		if ($accuracy)
			return $gMapGeocodedAddress;

		return null;
	}

	/**
	 * Geocodes an address and returns additional normalized information
	 * @param string $address
	 * @return GMapGeocodedAddress
	 * @author Fabrice Bernhard
	 * @since 2010-12-22 Yii Modified Antonio Ramirez
	 */
	public function geocodeXml($address)
	{
		$address = trim($address);

		$gMapGeocodedAddress = new EGMapGeocodedAddress($address);
		$gMapGeocodedAddress->geocodeXml($this->getGMapClient());

		return $gMapGeocodedAddress;
	}

	/**
	 * Returns the ID of the widget or generates a new one if requested.
	 * @param boolean $autoGenerate whether to generate an ID if it is not set previously
	 * @return string id of the widget.
	 * @author Antonio Ramirez
	 */
	public function getContainerId($autoGenerate=true)
	{
		if ($this->_containerId !== null)
			return $this->_containerId;
		else if ($autoGenerate)
			return $this->_containerId = 'EGMapContainer' . parent::$_counter++;
	}

	/**
	 * 
	 * Sets content layer ID
	 * @param integer $id
	 * @author Antonio Ramirez
	 */
	public function setContainerId($id)
	{
		$this->_containerId = $id;
	}

	/**
	 * 
	 * Sets the id of the layer where the maps should be rendered
	 * @param string $id ie. #idcontainer
	 */
	public function appendMapTo($id)
	{
		if (substr(ltrim($id), 0, 1) != '#' && $id != 'body')
			throw new CException(Yii::t('EGMap', 'The id of the layer doesnt seem a correct ID (not CSS selector) <br/>Function: ' . __FUNCTION__));
		$this->_appendTo = $id;
	}

	/**
	 * Defines one attributes of the div container
	 * Styles are defined differently 
	 * @link $this->setStyles
	 * @param array $htmlOptions of attributes
	 * @author Antonio Ramirez
	 */
	public function setContainerOptions($htmlOptions)
	{
		if (is_scalar($htmlOptions))
			throw new CException(Yii::t('EGMap', 'setContainerOptions: $htmlOptions must be an array'));

		if (isset($htmlOptions['id']))
			$this->setContainerId($htmlOptions['id']);
		$this->_htmlOptions = $htmlOptions;
	}

	/**
	 * 
	 * Returns the attribute options of the container
	 * @return array htmlOptions
	 * @author Antonio Ramirez
	 */
	public function getContainerOptions()
	{
		return $this->_htmlOptions;
	}

	/**
	 * returns the Html for the Google map container
	 * @param Array $options Style options of the HTML container
	 * @return string $container
	 * @since 2010-12-22 Yii modified Antonio Ramirez
	 */
	public function getContainer($styles=array(), $attributes=array())
	{
		$options = array_merge($this->_htmlOptions, array('id' => $this->getContainerId()));
		if (!isset($options['style']))
			$options['style'] = '';

		foreach ($this->_styleOptions as $style => $value)
		{
			$options['style'] .= $style . ':' . $value . ';';
		}

		return CHtml::tag('div', $options, '', true);
	}

	/**
	 * 
	 * @return string
	 * @author fabriceb
	 * @since 2009-08-20
	 * @since 2011-01-21 Modified by Antonio Ramirez
	 * 		 Improved algorithm
	 */
	public function optionsToJs()
	{
		return $this->encode($this->options);
	}

	/**
	 * 
	 * Registers the Javascript required for the Google map
	 * @param array $afterInit -javascript code to be rendered after init call
	 * @param string $language -preferred language setting for the results
	 * @param string $region -top level geographic domain 
	 * @param ClientScript::CONSTANT $position -where to render the script
	 * @since 2010-12-22 Antonio Ramirez (inspired by sfGMap Plugin of Fabriceb)
	 * @since 2011-01-09 Antonio Ramirez 
	 * 		  removed deprecated initialization procedures //$init_events[] = $this->getIconsJs();
	 * @since 2011-01-22 Antonio Ramirez
	 * 		  Added support for key drag and marker clusterer plugin
	 * @since 2011-03-10 Matt Kay
  	 * 		  Added polygon support (added to init_events)
	 * @since 2011-03-23 Antonio Ramirez
	 *		  Added circles and rectangles support
	 */
	public function registerMapScript($afterInit=array(), $language = null, $region = null, $position = CClientScript::POS_LOAD)
	{
		// TODO: include support in the future
		$params = 'sensor=false';

		if ($language !== null)
			$params .= '&language=' . $language;
		if ($region !== null)
			$params .= '&region=' . $region;

		CGoogleApi::init();
		CGoogleApi::register('maps', '3', array('other_params' => $params));

		$this->registerPlugins();

		$js = '';

		$init_events = array();
		if (null !== $this->_appendTo)
		{
			$init_events[] = "$('{$this->getContainer()}').appendTo('{$this->_appendTo}');" . PHP_EOL;
		}
		$init_events[] = 'var mapOptions = ' . $this->encode($this->options) . ';' . PHP_EOL;
		$init_events[] = $this->getJsName() . ' = new google.maps.Map(document.getElementById("' . $this->getContainerId() . '"), mapOptions);' . PHP_EOL;


		// add some more events
		$init_events[] = $this->getEventsJs();
		$init_events[] = $this->getMarkersJs();
		$init_events[] = $this->getDirectionsJs();
		$init_events[] = $this->getPluginsJs();
		$init_events[] = $this->getPolygonsJs();
		$init_events[] = $this->getCirclesJs();
		$init_events[] = $this->getRectanglesJs();

		if (is_array($afterInit))
		{
			foreach ($afterInit as $ainit)
				$init_events[] = $ainit;
		}
		if ($this->getGlobalVariable($this->getJsName() . '_info_window'))
			$init_events[] = $this->getJsName() . '_info_window=new google.maps.InfoWindow();';
		if ($this->getGlobalVariable($this->getJsName() . '_info_box') && $this->resources->itemAt('infobox_config'))
			$init_events[] = $this->getJsName (). '_info_box=new InfoBox('.
				$this->resources->itemAt('infobox_config').');';
		
		// declare the Google Map Javascript object as global
		$this->addGlobalVariable($this->getJsName(), 'null');

		$js = $this->getGlobalVariables();

		Yii::app()->getClientScript()->registerScript('EGMap_' . $this->getJsName(), $js, CClientScript::POS_HEAD);

		$js = 'function ' . $this->_containerId . '_init(){' . PHP_EOL;
		foreach ($init_events as $init_event)
		{
			if ($init_event)
			{
				$js .= $init_event . PHP_EOL;
			}
		}
		$js .= '
			  } google.maps.event.addDomListener(window, "load",' . PHP_EOL . $this->_containerId . '_init);' . PHP_EOL;

		Yii::app()->getClientScript()->registerScript($this->_containerId . time(), $js, CClientScript::POS_END);
	}

	/**
	 * @return string javascript code from plugins
	 */
	public function getPluginsJs()
	{
		$return = '';
		if (null !== $this->_markerClusterer)
			$return .= $this->_markerClusterer->toJs($this->getJsName());
		if (null !== $this->_keyDrag)
			$return .= $this->_keyDrag->toJs($this->getJsName());
		if (null !== $this->_latLonControl)
			$return .= $this->_latLonControl->toJs($this->getJsName());
		if (null !== $this->_kmlService)
			$return .= $this->_kmlService->toJs($this->getJsName());
		return $return;
	}

	/**
	 * 
	 * Enables LatLonControl plugin
	 * 
	 */
	public function enableKMLService($url, $localhost = false)
	{
		if (true === $localhost)
			$this->registerPlugin('EGMapKMLService');
		$this->_kmlService = new EGMapKMLService($url);
	}

	/**
	 * 
	 * Disables LatLonControl plugin
	 */
	public function disableKMLService()
	{
		$this->registerPlugin('EGMapKMLService', false);
		$this->_kmlService = null;
	}

	/**
	 * 
	 * Enables LatLonControl plugin
	 * 
	 */
	public function enableLatLonControl()
	{
		$this->registerPlugin('EGMapLatLonControl');
		$this->_latLonControl = new EGMapLatLonControl();
	}

	/**
	 * 
	 * Disables LatLonControl plugin
	 */
	public function disableLatLonControl()
	{
		$this->registerPlugin('EGMapLatLonControl', false);
		$this->_latLonControl = null;
	}

	/**
	 * 
	 * Enables Marker Clusterer Plugin
	 * @param EGMapMarkerClusterer $markerclusterer
	 * @author Antonio Ramirez
	 */
	public function enableMarkerClusterer(EGMapMarkerClusterer $markerclusterer)
	{
		$this->registerPlugin('EGMapMarkerClusterer');
		$this->_markerClusterer = $markerclusterer;
	}

	/**
	 * 
	 * Disables Marker Clusterer Plugin
	 * @author Antonio Ramirez
	 */
	public function disableMarkerClusterer()
	{
		$this->registerPlugin('EGMapMarkerClusterer');
		$this->_markerClusterer = null;
	}

	/**
	 * 
	 * Enables Key drag Zoom plugin
	 * @param EGMapKeyDragZoom $dragzoom
	 * @author Antonio Ramirez
	 */
	public function enableKeyDragZoom(EGMapKeyDragZoom $dragzoom)
	{
		$this->registerPlugin('EGMapKeyDragZoom');
		$this->_keyDrag = $dragzoom;
	}

	/**
	 * 
	 * Disables Key Drag Zoom Plugin
	 */
	public function disableKeyDragZoom()
	{
		$this->registerPlugin('EGMapKeyDragZoom', false);
		$this->_keyDrag = null;
	}

	/**
	 * 
	 * Lazy Programmer's function to register the javascript needed and display HTML
	 * map container
	 * @param array $afterInit -javascript code to be rendered after init call
	 * @param string $language -preferred language setting for the results
	 * @param string $region -top level geographic domain 
	 * @param ClientScript::CONSTANT $position -where to render the script
	 */
	public function renderMap($afterInit=array(), $language = null, $region = null, $position = CClientScript::POS_LOAD)
	{

		$this->registerMapScript($afterInit, $language, $region, $position);
		if (null === $this->_appendTo)
			echo $this->getContainer();
	}

	/**
	 * @param EGMapMarker $marker a marker to be put on the map
	 * @since 2011-01-11 added support for global infowindow
	 * @since 2011-01-22 added support for EGMapMarkerWithLabel plugin
	 * @since 2011-01-23 fixed info window shared
	 */
	public function addMarker(EGMapMarker $marker)
	{
		if (null === $this->resources->itemAt('markers'))
			$this->resources->add('markers', new CTypedList('EGMapMarker'));
		if ($marker->getHtmlInfoWindow() && $marker->htmlInfoWindowShared() && !$this->getGlobalVariable($this->getJsName() . '_info_window'))
			$this->addGlobalVariable($this->getJsName() . '_info_window', 'null');
		if ($marker->getHtmlInfoBox() && $marker->htmlInfoBoxShared() && !$this->getGlobalVariable($this->getJsName() . '_info_box'))
		{
			$this->addGlobalVariable($this->getJsName() . '_info_box', 'null');
			$this->resources->add('infobox_config',$marker->getHtmlInfoBox()->getEncodedOptions());
			$this->registerPlugin('EGMapInfoBox');
		}
		if ($marker instanceof EGMapMarkerWithLabel && !$this->pluginRegistered('EGMapMarkerWithLabel'))
			$this->registerPlugin('EGMapMarkerWithLabel');
		$this->resources->itemAt('markers')->add($marker);
	}
	
	/**
	 * @param EGMapPolygon $polygon a polygon to be put on the map
	 * @since 2011-03-10 Matt Kay
	 * 		Added this function for polygons based on addMarker
	 * @since 2011-17-12 Added info window support
	 */
	public function addPolygon(EGMapPolygon $polygon)
	{
		if (null === $this->resources->itemAt('polygons'))
			$this->resources->add('polygons', new CTypedList('EGMapPolygon'));
		if ($polygon->getHtmlInfoWindow() && $polygon->htmlInfoWindowShared() && !$this->getGlobalVariable($this->getJsName() . '_info_window'))
			$this->addGlobalVariable($this->getJsName() . '_info_window', 'null');
		$this->resources->itemAt('polygons')->add($polygon);
	}

	/**
	 * @param EGMapCircle $circle a circle to be put on the map
	 * @since 2011-03-23 Antonio Ramirez Cobos
	 */
	public function addCircle(EGMapCircle $circle)
	{
		if (null === $this->resources->itemAt('circles'))
			$this->resources->add('circles', new CTypedList('EGMapCircle'));
		if ($circle->getHtmlInfoWindow() && $circle->htmlInfoWindowShared() && !$this->getGlobalVariable($this->getJsName() . '_info_window'))
			$this->addGlobalVariable($this->getJsName() . '_info_window', 'null');
		$this->resources->itemAt('circles')->add($circle);
	}

	/**
	 * @param EGMapRectangle $rectangle a rectangle to be put on the map
	 * @since 2011-03-23 Antonio Ramirez Cobos
	 */
	public function addRectangle(EGMapRectangle $rectangle)
	{
		if (null === $this->resources->itemAt('rectangles'))
			$this->resources->add('rectangles', new CTypedList('EGMapRectangle'));
		if ($rectangle->getHtmlInfoWindow() && $rectangle->htmlInfoWindowShared() && !$this->getGlobalVariable($this->getJsName() . '_info_window'))
			$this->addGlobalVariable($this->getJsName() . '_info_window', 'null');
		$this->resources->itemAt('rectangles')->add($rectangle);
	}
	/**
	 * @param EGMapMarker[] $markers marker to be put on the map
	 * @since 2011-01-22 Antonio Ramirez
	 * 		 Added support for EGMapMarkerWithLabel plugin
	 */
	public function setMarkers(CTypedList $markers)
	{
		foreach ($markers as $marker)
		{
			if (!$marker instanceof EGMapMarker)
				throw new CException(Yii::t('EGMap', 'Markers collection must be of base class EGMapMarker'));
			if ($marker instanceof EGMapMarkerWithLabel && !$this->pluginRegistered('EGMapMarkerWithLabel'))
				$this->registerPlugin('EGMapMarkerWithLabel');
		}
		$this->resources->add('markers', $markers);
	}

	/**
	 * @param EGMapEvent $event an event to be attached to the map
	 */
	public function addEvent(EGMapEvent $event)
	{
		if (null === $this->resources->itemAt('events'))
			$this->resources->add('events', new CTypedList('EGMapEvent'));

		$this->resources->itemAt('events')->add($event);
	}

	/**
	 * $directions getter
	 *
	 * @return array $directions
	 * @author Vincent Guillon 
	 * @since 2009-11-13 17:18:29
	 */
	public function getDirections()
	{

		return $this->resources->itemAt('directions');
	}

	/**
	 * $directions setter
	 *
	 * @param CTypedList $directions
	 * @author Vincent Guillon 
	 * @since 2009-11-13 17:21:18
	 */
	public function setDirections($directions = null)
	{

		if ($directions instanceof CTypedList)
			$this->resources->add('directions', $directions);
	}

	/**
	 * Add direction to list ($this->directions)
	 *
	 * @param EGMapDirection $directions
	 * @author Antonio Ramirez
	 */
	public function addDirection(EGMapDirection $direction)
	{
		if (null === $this->resources->itemAt('directions'))
			$this->resources->add('directions', new CTypedList('EGMapDirection'));

		$this->resources->itemAt('directions')->add($direction);
	}

	/**
	 * Returns the javascript string which defines the markers
	 * @return string
	 * @since 2011-01-22 modified Antonio Ramirez
	 * 		 Added support for marker clusterer
	 */
	public function getMarkersJs()
	{
		$return = '';
		if (null !== $this->resources->itemAt('markers'))
		{
			foreach ($this->resources->itemAt('markers') as $marker)
			{
				$return .= $marker->toJs($this->getJsName());
				if (null !== $this->_markerClusterer)
					$this->_markerClusterer->addMarker($marker);
				$return .= "\n      ";
			}
		}
		return $return;
	}

	/**
	 * Returns the javascript string which defines events linked to the map
	 * 
	 * @return string
	 * @since 2011-01-21 handles different type of events now
	 */
	public function getEventsJs()
	{

		$return = '';
		if (null !== $this->resources->itemAt('events'))
		{
			foreach ($this->resources->itemAt('events') as $event)
			{
				$return .= $event->toJs($this->getJsName());
				$return .= "\n";
			}
		}
		return $return;
	}
	
	/**
	 * Returns the javascript string which defines the polygons
	 * @return string
	 * @since 2011-03-10 Matt Kay
	 * 		 Added function based on getMarkersJs
	 */
	public function getPolygonsJs()
	{
		$return = '';
		if (null !== $this->resources->itemAt('polygons'))
		{
			foreach ($this->resources->itemAt('polygons') as $polygon)
			{
				$return .= $polygon->toJs($this->getJsName());
				$return .= "\n      ";
			}
		}
		return $return;
	}

	/**
	 * Returns the javascript string which defines the circles
	 * @return string
	 * @since 2011-03-23 Antonio Ramirez
	 * 	
	 */
	public function getCirclesJs()
	{
		$return = '';
		if (null !== $this->resources->itemAt('circles'))
		{
			foreach ($this->resources->itemAt('circles') as $circle)
			{
				$return .= $circle->toJs($this->getJsName());
				$return .= "\n      ";
			}
		}
		return $return;
	}

	/**
	 * Returns the javascript string which defines rectangles
	 * @return string
	 * @since 2011-03-23 Antonio Ramirez
	 * 	
	 */
	public function getRectanglesJs()
	{
		$return = '';
		if (null !== $this->resources->itemAt('rectangles'))
		{
			foreach ($this->resources->itemAt('rectangles') as $rectangle)
			{
				$return .= $rectangle->toJs($this->getJsName());
				$return .= "\n      ";
			}
		}
		return $return;
	}
	
	/**
	 * Get the directions javascript code
	 *
	 * @return string $js_code
	 * @author Antonio Ramirez
	 */
	public function getDirectionsJs()
	{
		$js_code = '';
		if (null !== $this->resources->itemAt('directions'))
		{
			foreach ($this->resources->itemAt('directions') as $direction)
			{
				$js_code .= $direction->toJs($this->getJsName());
				$js_code .= "\n      ";
			}
		}
		return $js_code;
	}

	/**
	 * 
	 * Adds global variables to be set before init function
	 * @param string $name
	 * @param mixed $value
	 */
	public function addGlobalVariable($name, $value='null')
	{
		if (null === $this->resources->itemAt('variables'))
			$this->resources->add('variables', new CMap());

		$this->resources->itemAt('variables')->add($name, $value);
	}

	/**
	 * 
	 * @return global variable if set 
	 */
	public function getGlobalVariable($name)
	{
		if (null === $this->resources->itemAt('variables'))
			return null;

		return $this->resources->itemAt('variables')->itemAt($name);
	}

	/**
	 * 
	 * Removes a global variable
	 * @param string $name of the variable to remove
	 */
	public function removeGlobalVariable($name)
	{
		if (null === $this->resources->itemAt('variables'))
			return;

		$this->resources->itemAt('variables')->remove($name);
	}

	/**
	 * 
	 * @return string global variables in JS format
	 */
	public function getGlobalVariables()
	{
		$return = '';
		if (null !== $this->resources->itemAt('variables'))
		{
			foreach ($this->resources->itemAt('variables') as $name => $value)
			{
				$return .='
  					var ' . $name . ' = ' . $value . ';';
			}
		}
		return $return;
	}

	/**
	 * Defines one style of the div container
	 * @param string $style_tag name of css tag
	 * @param string $style_value value of css tag
	 * @since 2010-12-22 modified for Yii Antonio Ramirez
	 */
	public function setContainerStyle($style_tag, $style_value)
	{
		if (!is_array($this->_styleOptions))
			$this->_styleOptions = array();

		$this->_styleOptions = array_merge($this->_styleOptions, array($style_tag => $style_value));
	}

	/**
	 *
	 * Gets one style of the Google Map div
	 * @param string $style_tag name of css tag
	 * @since 2010-12-22 modified Antonio Ramirez
	 */
	public function getContainerStyle($style_tag)
	{
		if (isset($this->_styleOptions[$style_tag]))
			return $this->_styleOptions[$style_tag];
		return false;
	}

	/**
	 * Sets the center of the map at the beginning
	 *
	 * @param float $lat
	 * @param float $lng
	 * @since 2010-12-22 modified for Yii Antonio Ramirez
	 */
	public function setCenter($lat=null, $lng=null)
	{
		$coord = new EGMapCoord($lat, $lng);
		$this->options['center'] = $coord;
	}

	/**
	 *
	 * @return EGMapCoord
	 */
	public function getCenterCoord()
	{
		return $this->options['center'];
	}

	/**
	 *
	 * @return float Latitude
	 */
	public function getCenterLat()
	{

		return isset($this->options['center']) ? $this->getCenterCoord()->getLatitude() : null;
	}

	/**
	 *
	 * @return float Longitude
	 */
	public function getCenterLng()
	{
		return isset($this->options['center']) ? $this->getCenterCoord()->getLongitude() : null;
	}

	/**
	 * gets the width of the map in pixels according to container style
	 * @return integer
	 * @since 2010-12-22 code reduction Yii Antonio Ramirez
	 */
	public function getWidth()
	{
		if (substr($this->getContainerStyle('width'), -2, 2) != 'px')
			return false;
		return intval(substr($this->getContainerStyle('width'), 0, -2));
	}

	/**
	 * gets the width of the map in pixels according to container style
	 * @return integer
	 * @since 2010-12-22 code reduction Antonio Ramirez
	 */
	public function getHeight()
	{
		if (substr($this->getContainerStyle('height'), -2, 2) != 'px')
			return false;

		return intval(substr($this->getContainerStyle('height'), 0, -2));
	}

	/**
	 * sets the width of the map in pixels
	 *
	 * @param integer | string
	 */
	public function setWidth($width)
	{
		if (is_numeric($width))
		{
			$width = $width . 'px';
		}
		$this->setContainerStyle('width', $width);
	}

	/**
	 * sets the width of the map in pixels
	 *
	 * @param integer | string
	 */
	public function setHeight($height)
	{
		if (is_numeric($height))
		{
			$height = $height . 'px';
		}
		$this->setContainerStyle('height', $height);
	}

	/**
	 * Returns the URL of a static version of the map (when JavaScript is not active)
	 * Supports only markers and basic parameters: center, zoom, size.
	 * @param string $map_type = 'mobile'
	 * @param string $hl Language (fr, en...)
	 * @return string URL of the image
	 * @author Laurent Bachelier
	 * @since 2010-12-22  inserted http_build_query modified Antonio Ramirez
	 */
	public function getStaticMapUrl($maptype='mobile', $hl='es')
	{
		$params = array(
			'maptype' => $maptype,
			'zoom' => $this->getZoom(),
			'key' => $this->getAPIKey(),
			'center' => $this->getCenterLat() . ',' . $this->getCenterLng(),
			'size' => $this->getWidth() . 'x' . $this->getHeight(),
			'hl' => $hl,
			'markers' => $this->getMarkersStatic()
		);
		$pairs = array();

		$params = http_build_query($params);

		return 'http://maps.google.com/staticmap?' . $params; //implode('&',$pairs);
	}

	/**
	 * Returns the static code to create markers
	 * @return string
	 * @author Laurent Bachelier
	 * @since 2010-12-22 Yii modified Antonio Ramirez
	 */
	protected function getMarkersStatic()
	{
		$markers_code = array();
		if (null !== $this->resources->itemAt('markers'))
		{
			foreach ($this->resources->itemAt('markers') as $marker)
			{
				$markers_code[] = $marker->getMarkerStatic();
			}
		}
		return implode('|', $markers_code);
	}

	/**
	 *
	 * calculates the center of the markers linked to the map
	 *
	 * @return EGMapCoord
	 * @since 2010-12-22 modified for Yii Antonio Ramirez
	 */
	public function getMarkersCenterCoord()
	{
		if (null === $this->resources->itemAt('markers'))
			throw new CException(Yii::t('EGMap', 'At least one more marker is necessary for getMarkersCenterCoord to work'));
		//todo: check for markers existence
		return EGMapMarker::getCenterCoord($this->resources->itemAt('markers'));
	}

	/**
	 * sets the center of the map at the center of the markers
	 * @since 2010-12-22 modified for Yii Antonio Ramirez
	 */
	public function centerOnMarkers()
	{
		$center = $this->getMarkersCenterCoord();

		$this->setCenter($center->getLatitude(), $center->getLongitude());
	}

	/**
	 *
	 * calculates the zoom which fits the markers on the map
	 *
	 * @param integer $margin a scaling factor around the smallest bound
	 * @return integer $zoom
	 * @author fabriceb
	 * @since 2009-05-02
	 * @since 2010-12-22 modified for Yii Antonio Ramirez
	 */
	public function getMarkersFittingZoom($margin = 0, $default_zoom = 14)
	{
		if (null === $this->resources->itemAt('markers'))
			throw new CException(Yii::t('EGMap', 'At least one more marker is necessary for getMarkersFittingZoom to work'));
		//todo check for markers existence
		$bounds = EGMapBounds::getBoundsContainingMarkers($this->resources->itemAt('markers'), $margin);

		return $bounds->getZoom(min($this->getWidth(), $this->getHeight()), $default_zoom);
	}

	/**
	 * sets the zoom of the map to fit the markers (uses mercator projection to guess the size in pixels of the bounds)
	 * WARNING : this depends on the width in pixels of the resulting map
	 *
	 * @param integer $margin a scaling factor around the smallest bound
	 * @author fabriceb
	 * @since 2009-05-02
	 */
	public function zoomOnMarkers($margin = 0, $default_zoom = 14)
	{
		$this->options['zoom'] = $this->getMarkersFittingZoom($margin, $default_zoom);
	}

	/**
	 * sets the zoom and center of the map to fit the markers (uses mercator projection to guess the size in pixels of the bounds)
	 *
	 * @param integer $margin a scaling factor around the smallest bound
	 * @author fabriceb
	 * @since 2009-05-02
	 */
	public function centerAndZoomOnMarkers($margin = 0, $default_zoom = 14)
	{
		$this->centerOnMarkers();
		$this->zoomOnMarkers($margin, $default_zoom);
	}

	/**
	 *
	 * @return EGMapBounds
	 * @author fabriceb
	 * @since Jun 2, 2009 fabriceb
	 * @since 2010-12-22 modified for Yii Antonio Ramirez
	 */
	public function getBoundsFromCenterAndZoom()
	{
		return EGMapBounds::getBoundsFromCenterAndZoom($this->getCenterCoord(), $this->zoom, $this->getWidth(), $this->getHeight());
	}

	/**
	 * backwards compatibility
	 * @param string[] $api_keys
	 * @return string
	 * @author fabriceb
	 * @since Jun 17, 2009 fabriceb
	 * @since 2010-12-22 modified for Yii Antonio Ramirez
	 */
	public static function guessAPIKey($api_keys = null)
	{
		return EGMapClient::guessAPIKey($api_keys);
	}

	/**
	 * 
	 * Loops through the plugins and registers its required
	 * assets
	 * @author Antonio Ramirez
	 */
	private function registerPlugins()
	{
		$assetDir = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR;
		$assetUrl = Yii::app()->assetManager->publish($assetDir);


		$cs = Yii::app()->getClientScript();

		foreach ($this->plugins as $p)
		{

			if ($p['flag'])
			{
				foreach ($p['js'] as $js)
					$cs->registerScriptFile($assetUrl . "/" . $js, CClientScript::POS_END);
			}
		}
	}

	/**
	 * 
	 * Flags a plugin to register its assets
	 * @param string $plugin name
	 * @param boolean $register
	 */
	private function registerPlugin($plugin, $register=true)
	{
		$this->plugins[$plugin]["flag"] = $register;
	}

	/**
	 * 
	 * Checks whether a plugin has been flagged to be
	 * registered or not
	 * @param string $plugin name
	 * @return boolean true|false
	 */
	private function pluginRegistered($plugin)
	{
		return $this->plugins[$plugin]["flag"];
	}

	/**
	 * 
	 * Encodes an option array into 
	 * appropiate Javascript object
	 * representation
	 * @param mixed $value
	 * @author Antonio Ramirez
	 */
	public static function encode($value)
	{

		if (is_string($value))
		{
			if (strpos($value, 'js:') === 0)
				return substr($value, 3);
			else
				return $value;
		}
		else if ($value === null)
			return 'null';
		else if (is_bool($value))
			return $value ? 'true' : 'false';
		else if (is_integer($value))
			return "$value";
		else if (is_float($value))
		{
			if ($value === -INF)
				return 'Number.NEGATIVE_INFINITY';
			else if ($value === INF)
				return 'Number.POSITIVE_INFINITY';
			else
				return rtrim(sprintf('%.16F', $value), '0');  // locale-independent representation
		}
		else if (is_object($value))
		{
			if (method_exists($value, 'toJs'))
				return $value->toJs();
			return self::encode(get_object_vars($value));
		}
		else if (is_array($value))
		{
			$es = array();
			if (($n = count($value)) > 0 && array_keys($value) !== range(0, $n - 1))
			{

				foreach ($value as $k => $v)
				{
					if (null === $v)
						continue;
					$es[] = $k . ":" . self::encode($v);
				}

				return '{' . implode(',' . PHP_EOL, $es) . '}';
			}
			else
			{
				foreach ($value as $v)
					$es[] = self::encode($v);
				return '[' . implode(',', $es) . ']';
			}
		}
		else
			return '';
	}

}