84 lines
1.9 KiB
JavaScript
Executable File
84 lines
1.9 KiB
JavaScript
Executable File
GMaps.prototype.createControl = function(options) {
|
|
var control = document.createElement('div');
|
|
|
|
control.style.cursor = 'pointer';
|
|
|
|
if (options.disableDefaultStyles !== true) {
|
|
control.style.fontFamily = 'Roboto, Arial, sans-serif';
|
|
control.style.fontSize = '11px';
|
|
control.style.boxShadow = 'rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px';
|
|
}
|
|
|
|
for (var option in options.style) {
|
|
control.style[option] = options.style[option];
|
|
}
|
|
|
|
if (options.id) {
|
|
control.id = options.id;
|
|
}
|
|
|
|
if (options.classes) {
|
|
control.className = options.classes;
|
|
}
|
|
|
|
if (options.content) {
|
|
if (typeof options.content === 'string') {
|
|
control.innerHTML = options.content;
|
|
}
|
|
else if (options.content instanceof HTMLElement) {
|
|
control.appendChild(options.content);
|
|
}
|
|
}
|
|
|
|
if (options.position) {
|
|
control.position = google.maps.ControlPosition[options.position.toUpperCase()];
|
|
}
|
|
|
|
for (var ev in options.events) {
|
|
(function(object, name) {
|
|
google.maps.event.addDomListener(object, name, function(){
|
|
options.events[name].apply(this, [this]);
|
|
});
|
|
})(control, ev);
|
|
}
|
|
|
|
control.index = 1;
|
|
|
|
return control;
|
|
};
|
|
|
|
GMaps.prototype.addControl = function(options) {
|
|
var control = this.createControl(options);
|
|
|
|
this.controls.push(control);
|
|
this.map.controls[control.position].push(control);
|
|
|
|
return control;
|
|
};
|
|
|
|
GMaps.prototype.removeControl = function(control) {
|
|
var position = null,
|
|
i;
|
|
|
|
for (i = 0; i < this.controls.length; i++) {
|
|
if (this.controls[i] == control) {
|
|
position = this.controls[i].position;
|
|
this.controls.splice(i, 1);
|
|
}
|
|
}
|
|
|
|
if (position) {
|
|
for (i = 0; i < this.map.controls.length; i++) {
|
|
var controlsForPosition = this.map.controls[control.position];
|
|
|
|
if (controlsForPosition.getAt(i) == control) {
|
|
controlsForPosition.removeAt(i);
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return control;
|
|
};
|